Skip to content

Commit

Permalink
Fix fuzzing test, thanks @evan-forbes
Browse files Browse the repository at this point in the history
  • Loading branch information
liamsi committed Mar 22, 2021
1 parent 59ac120 commit 1feed0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestFuzzProveVerifyNameSpace(t *testing.T) {
for _, ns := range sortedKeys {
leafDataList := nidDataMap[ns]
for _, d := range leafDataList {
err := tree.Push(d[:size])
err := tree.Push(d)
if err != nil {
t.Fatalf("error on Push(): %v", err)
}
Expand Down

0 comments on commit 1feed0c

Please sign in to comment.