File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-context/src/test/java/org/springframework/resilience Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ void timeoutExceededAfterFirstRetry() {
375375 .satisfies (isReactiveException ())
376376 .havingCause ()
377377 .isInstanceOf (TimeoutException .class )
378- .withMessageContaining ("within 5ms " );
378+ .withMessageContaining ("within 20ms " );
379379 // 1 initial attempt + 1 retry
380380 assertThat (target .counter ).hasValue (2 );
381381 }
@@ -387,7 +387,7 @@ void timeoutExceededAfterSecondRetry() {
387387 .satisfies (isReactiveException ())
388388 .havingCause ()
389389 .isInstanceOf (TimeoutException .class )
390- .withMessageContaining ("within 5ms " );
390+ .withMessageContaining ("within 20ms " );
391391 // 1 initial attempt + 2 retries
392392 assertThat (target .counter ).hasValue (3 );
393393 }
You can’t perform that action at this time.
0 commit comments