You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/09/23 14:44:30 UTC

[commons-io] branch master updated: Try to fix random GitHub test failure on macOS.

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 c8ac9f6  Try to fix random GitHub test failure on macOS.
c8ac9f6 is described below

commit c8ac9f66c0afc43dd912a173ebd82d9e37988666
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 23 10:44:28 2021 -0400

    Try to fix random GitHub test failure on macOS.
---
 src/test/java/org/apache/commons/io/input/TailerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/input/TailerTest.java b/src/test/java/org/apache/commons/io/input/TailerTest.java
index e2d34ae..c4b662f 100644
--- a/src/test/java/org/apache/commons/io/input/TailerTest.java
+++ b/src/test/java/org/apache/commons/io/input/TailerTest.java
@@ -687,7 +687,7 @@ public class TailerTest {
             assertEquals(0, lines.size(), "1 line count");
 
             writeString(file, " one\n");
-            TestUtils.sleep(delayMillis * 2);
+            TestUtils.sleep(delayMillis * 4);
             lines = listener.getLines();
 
             assertEquals(1, lines.size(), "1 line count");