Skip to content

Commit c93331d

Browse files
committed
Fix missed TIMEOUT_DURATION replacement in tests
1 parent be1a8c6 commit c93331d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/iexec/blockchain/tool/QueueServiceTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void shouldExecuteInOrder() throws NoSuchFieldException {
137137

138138
Awaitility
139139
.await()
140-
.atMost(5, TimeUnit.SECONDS)
140+
.atMost(TIMEOUT_DURATION, TimeUnit.SECONDS)
141141
.until(() -> executionOrder.size() == totalTasksNumber);
142142

143143
// Tasks should have been executed in the right order.

0 commit comments

Comments
 (0)