From ad278cd52ea12052fd89506480bf1854b69886de Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 28 Jun 2025 19:19:42 +0200 Subject: [PATCH] Fix ExponentialBackOffTests --- .../java/org/springframework/util/ExponentialBackOffTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/test/java/org/springframework/util/ExponentialBackOffTests.java b/spring-core/src/test/java/org/springframework/util/ExponentialBackOffTests.java index c877236f74..40271f5c74 100644 --- a/spring-core/src/test/java/org/springframework/util/ExponentialBackOffTests.java +++ b/spring-core/src/test/java/org/springframework/util/ExponentialBackOffTests.java @@ -139,7 +139,7 @@ class ExponentialBackOffTests { multiplier=2.0, \ maxInterval=30000, \ maxElapsedTime=%d, \ - maxAttempts=%d]""", Long.MAX_VALUE, Integer.MAX_VALUE); + maxAttempts=%d]""", Long.MAX_VALUE, Long.MAX_VALUE); BackOffExecution execution = backOff.start(); assertThat(execution).asString().isEqualTo("ExponentialBackOffExecution[currentInterval=n/a, multiplier=2.0, attempts=0]");