We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfff61 commit 555f384Copy full SHA for 555f384
commands_test.go
@@ -211,13 +211,13 @@ var _ = Describe("Commands", func() {
211
select {
212
case <-done:
213
Fail("BLPOP is not blocked.")
214
- case <-time.After(2 * time.Second):
+ case <-time.After(1 * time.Second):
215
// ok
216
}
217
218
killed := client.ClientKillByFilter(ctx, "MAXAGE", "1")
219
Expect(killed.Err()).NotTo(HaveOccurred())
220
- Expect(killed.Val()).To(SatisfyAny(Equal(int64(2)), Equal(int64(3))))
+ Expect(killed.Val()).To(SatisfyAny(Equal(int64(2)), Equal(int64(3)), Equal(int64(4))))
221
222
223
0 commit comments