Skip to content

Commit

Permalink
Update FunctionsTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev authored Dec 11, 2024
1 parent e6baab4 commit 7df1a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/github/underscore/FunctionsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void defer() {
return null;
});
assertEquals(0, counter[0].intValue(), "incr was debounced");
await().atLeast(120, TimeUnit.MILLISECONDS)
await().atMost(120, TimeUnit.MILLISECONDS)
.until(
() -> {
assertEquals(1, counter[0].intValue(), "incr was debounced");
Expand Down

0 comments on commit 7df1a9a

Please sign in to comment.