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-vfs.git

commit 6777d72309e8cd3a8100058e42823bcba0e7fbbe
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jul 29 17:00:57 2020 -0400

    Be more generous on slow build machines.
---
 .../java/org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java
 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java
index 99fe7de..d60ef7c 100644
--- 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java
+++ 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java
@@ -146,7 +146,7 @@ public class DefaultFileMonitorTest extends 
AbstractVfsTestCase {
                 Thread.sleep(500);
                 monitor.addFile(fileObject);
                 writeToFile(testFile);
-                Thread.sleep(500);
+                Thread.sleep(1000);
                 assertTrue("No event occurred", changeStatus != null);
                 assertEquals("Incorrect event " + changeStatus, 
Status.CREATED, changeStatus);
             } finally {

Reply via email to