Skip to content

Commit

Permalink
changing sleep duration for ObjectIdletime Test (#1454)
Browse files Browse the repository at this point in the history
Co-authored-by: TJ Zhang <[email protected]>
  • Loading branch information
tjzhang-BQ and TJ Zhang authored May 23, 2024
1 parent 9a3fcc5 commit 637f04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/integTest/src/test/java/glide/SharedCommandTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -3517,7 +3517,7 @@ public void objectIdletime_returns_null(BaseClient client) {
public void objectIdletime(BaseClient client) {
String key = UUID.randomUUID().toString();
assertEquals(OK, client.set(key, "").get());
Thread.sleep(1000);
Thread.sleep(2000);
assertTrue(client.objectIdletime(key).get() > 0L);
}

Expand Down

0 comments on commit 637f04b

Please sign in to comment.