Skip to content

Commit 1723049

Browse files
authored
Use correct number of digits in scoped scan test (#225)
so that we don't have failing tests intermittently throughout the day.
1 parent c36f5b1 commit 1723049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ func TestClientGCIntegration(t *testing.T) {
486486

487487
runClientWriteIntegrationTest(ctx, t, rdb, client, true)
488488

489-
total, _, err := client.GC(ctx, 6, onGCFunc)
489+
total, _, err := client.GC(ctx, 5, onGCFunc)
490490
require.NoError(t, err)
491491
require.Equal(t, uint64(10), total)
492492
})

0 commit comments

Comments
 (0)