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 e49cbb3  We had the same test twice, replace with another bounfary 
condition.
e49cbb3 is described below

commit e49cbb31c4c0551327eb8ee3161490c80214cf2f
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Oct 28 13:49:54 2021 -0400

    We had the same test twice, replace with another bounfary condition.
---
 src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java 
b/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java
index ee19cbc..64ab3c7 100644
--- a/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java
+++ b/src/test/java/org/apache/commons/io/FileUtilsWaitForTest.java
@@ -33,8 +33,8 @@ public class FileUtilsWaitForTest {
     // to solve issues as per BZ 38927
 
     @Test
-    public void testWaitFor() {
-        FileUtils.waitFor(FileUtils.current(), -1);
+    public void testWaitFor0() {
+        FileUtils.waitFor(FileUtils.current(), 0);
     }
 
     @Test

Reply via email to