Skip to content

Commit 3eb537c

Browse files
author
Gary Gregory
committed
Increase timeout for when build are super slow (on my GitHub at least)
1 parent 5e552a1 commit 3eb537c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void testWaitForInterrupted() throws InterruptedException {
4646
final CountDownLatch started = new CountDownLatch(1);
4747
final Thread thread1 = new Thread(() -> {
4848
started.countDown();
49-
assertTrue(FileUtils.waitFor(FileUtils.current(), 4));
49+
assertTrue(FileUtils.waitFor(FileUtils.current(), 10));
5050
wasInterrupted.set(Thread.currentThread().isInterrupted());
5151
});
5252
thread1.start();

0 commit comments

Comments
 (0)