Skip to content

Commit e9b0036

Browse files
committed
Update test infra to use latest Redis
1 parent a4b2053 commit e9b0036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/redis/clients/jedis/ACLJedisPoolTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public void testCloseConnectionOnMakeObject() {
276276
int currentClientCount = getClientCount(jedis.clientList());
277277
assertThrows(JedisAccessControlException.class, pool::getResource);
278278
// wait for the redis server to close the connection
279-
await().pollDelay(Duration.ofMillis(10)).atMost(50, MILLISECONDS)
279+
await().pollDelay(Duration.ofMillis(10)).atMost(500, MILLISECONDS)
280280
.until(() -> getClientCount(jedis.clientList()) == currentClientCount);
281281
assertEquals(currentClientCount, getClientCount(jedis.clientList()));
282282
}

0 commit comments

Comments
 (0)