This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new 3eb537cb Increase timeout for when build are super slow (on my GitHub at least) 3eb537cb is described below commit 3eb537cbc43bab888803a0ca8dc249bf05134052 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Jul 28 09:28:15 2022 -0400 Increase timeout for when build are super slow (on my GitHub at least) --- src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java b/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java index b014b885..c4979b7f 100644 --- a/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java +++ b/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java @@ -46,7 +46,7 @@ public class FileUtilsWaitForTest { final CountDownLatch started = new CountDownLatch(1); final Thread thread1 = new Thread(() -> { started.countDown(); - assertTrue(FileUtils.waitFor(FileUtils.current(), 4)); + assertTrue(FileUtils.waitFor(FileUtils.current(), 10)); wasInterrupted.set(Thread.currentThread().isInterrupted()); }); thread1.start();