We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 265535e commit 242a151Copy full SHA for 242a151
src/test/java/net/jodah/failsafe/issues/Issue242Test.java
@@ -10,9 +10,9 @@
10
11
@Test
12
public class Issue242Test {
13
- public void test() throws Throwable {
+ public void shouldDelayOnExplicitRetry() throws Throwable {
14
RetryPolicy<String> retryPolicy = new RetryPolicy<String>().handleResult(null)
15
- .withDelay(Duration.ofMillis(100))
+ .withDelay(Duration.ofMillis(110))
16
.withMaxAttempts(3);
17
18
long startTime = System.currentTimeMillis();
0 commit comments