Skip to content

Commit cee53d4

Browse files
author
NikolayAvramov
committed
fix wait retry parameters order
1 parent dd98770 commit cee53d4

File tree

1 file changed

+1
-1
lines changed
  • bellatrix.core/src/main/java/solutions/bellatrix/core/utilities

1 file changed

+1
-1
lines changed

bellatrix.core/src/main/java/solutions/bellatrix/core/utilities/Wait.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static boolean retry(Runnable action, Duration timeout, Duration sleepInt
7373
return false;
7474
}
7575

76-
public static void retry(Runnable action, Duration sleepInterval, Duration timeout, Class<? extends Throwable> ... exceptionsToIgnore) {
76+
public static void retry(Runnable action, Duration timeout, Duration sleepInterval, Class<? extends Throwable> ... exceptionsToIgnore) {
7777
Wait.retry(action, timeout, sleepInterval, true, exceptionsToIgnore);
7878
}
7979

0 commit comments

Comments
 (0)