Skip to content

Commit

Permalink
adjust parm for timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
qifanwang committed Dec 30, 2024
1 parent fae3b9e commit c91aa49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/java/com/ctrip/xpipe/AbstractTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ protected boolean assertSuccess(Runnable assertion) {

protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) throws TimeoutException {

waitConditionUntilTimeOut(booleanSupplier, 5000, 2);
waitConditionUntilTimeOut(booleanSupplier, 10000, 2);
}

protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier, int waitTimeMilli) throws TimeoutException {
Expand Down

0 comments on commit c91aa49

Please sign in to comment.