From 5452c02d4e33aedb9020ab706d39bd441f7c3598 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Thu, 16 Apr 2026 20:33:50 -0400 Subject: [PATCH] fix: assertion in fuzz test incorrect --- cuckoo_fuzz_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuckoo_fuzz_test.go b/cuckoo_fuzz_test.go index 7c6af28..f96bc6e 100644 --- a/cuckoo_fuzz_test.go +++ b/cuckoo_fuzz_test.go @@ -75,7 +75,7 @@ func FuzzInsertLookup(f *testing.F) { delete(expected, step.key) _, ok = actual.Get(step.key) - assert.True(ok) + assert.False(ok) } else { _, err := actual.Put(step.key, step.value) assert.NoError(err)