diff --git a/spring-boot-example/pom.xml b/spring-boot-example/pom.xml
index 9a92d91f..f801626d 100644
--- a/spring-boot-example/pom.xml
+++ b/spring-boot-example/pom.xml
@@ -4,7 +4,7 @@
org.springframework.boot
spring-boot-starter-parent
- 3.4.3
+ 3.4.5
com.example
diff --git a/src/test/java/com/github/underscore/FunctionsTest.java b/src/test/java/com/github/underscore/FunctionsTest.java
index c0ee446c..e962a0ac 100644
--- a/src/test/java/com/github/underscore/FunctionsTest.java
+++ b/src/test/java/com/github/underscore/FunctionsTest.java
@@ -199,7 +199,7 @@ void defer() {
return null;
});
assertEquals(0, counter[0].intValue(), "incr was debounced");
- await().atMost(200, TimeUnit.MILLISECONDS)
+ await().atMost(240, TimeUnit.MILLISECONDS)
.until(
() -> {
assertEquals(1, counter[0].intValue(), "incr was debounced");