Fix incorrect logic with skipping the fuzz test

This commit is contained in:
David Dworken 2024-02-10 23:05:03 -08:00
parent 7e580888d2
commit 102a3b54ac
No known key found for this signature in database

View File

@ -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")
}
}