Skip to content

Commit

Permalink
issue-628 Changed test case timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
hcha authored and heyhiren committed Aug 2, 2023
1 parent d696b0c commit 2900ea8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ public void testBasicClusteredWriteBehindWithFailure() {
localCache.put(3L, String.valueOf(3));
localCache.put(4L, String.valueOf(4));

assertThat(() -> localCache.get(1L), within(Duration.ofSeconds(120)).matches(is(nullValue())));
assertThat(() -> localCache.get(3L), within(Duration.ofSeconds(120)).matches(is(nullValue())));
assertThat(() -> localCache.get(1L), within(Duration.ofSeconds(100)).matches(is(nullValue())));
assertThat(() -> localCache.get(3L), within(Duration.ofSeconds(100)).matches(is(nullValue())));

Map<Long, List<String>> records = getEvenNumberLoaderWriter().getRecords();

Expand Down

0 comments on commit 2900ea8

Please sign in to comment.