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 9b08b2d commit 518cbe2Copy full SHA for 518cbe2
spring-boot-example/pom.xml
@@ -4,7 +4,7 @@
4
<parent>
5
<groupId>org.springframework.boot</groupId>
6
<artifactId>spring-boot-starter-parent</artifactId>
7
- <version>3.4.3</version>
+ <version>3.4.5</version>
8
<relativePath/>
9
</parent>
10
<groupId>com.example</groupId>
src/test/java/com/github/underscore/FunctionsTest.java
@@ -199,7 +199,7 @@ void defer() {
199
return null;
200
});
201
assertEquals(0, counter[0].intValue(), "incr was debounced");
202
- await().atMost(200, TimeUnit.MILLISECONDS)
+ await().atMost(240, TimeUnit.MILLISECONDS)
203
.until(
204
() -> {
205
assertEquals(1, counter[0].intValue(), "incr was debounced");
0 commit comments