From 102a3b54ac994647d03a470a56fe8dcf2c581a56 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sat, 10 Feb 2024 23:05:03 -0800 Subject: [PATCH] Fix incorrect logic with skipping the fuzz test --- client/fuzz_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fuzz_test.go b/client/fuzz_test.go index 9e8c500..5a89657 100644 --- a/client/fuzz_test.go +++ b/client/fuzz_test.go @@ -143,7 +143,7 @@ func FuzzTestMultipleUsers(f *testing.F) { f.Skip("skipping slow tests") } if isShardedTestRun() { - if currentShardNumber() == 0 { + if currentShardNumber() != 0 { f.Skip("Skipping sharded test") } }