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


The following commit(s) were added to refs/heads/master by this push:
     new 2b89f42  [VFS-299] VFS-299 Add failing tests for missing filesystem 
listener removal in DefaultFileMonitor #72.
2b89f42 is described below

commit 2b89f423a4af3ecd4577f86fe2dc1bc8ba33a32c
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Oct 9 10:45:36 2019 -0400

    [VFS-299] VFS-299 Add failing tests for missing filesystem listener
    removal in DefaultFileMonitor #72.
    
    Arg, this test is still using JUnit 3.
---
 .../org/apache/commons/vfs2/impl/test/DefaultFileMonitorTest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 253696d..8e78cdc 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
@@ -221,7 +221,7 @@ public class DefaultFileMonitorTest extends 
AbstractVfsTestCase {
      * As a result, the file monitor will fire two created events.
      */
     @Ignore("VFS-299")
-    public void testAddRemove() throws Exception {
+    public void ignore_testAddRemove() throws Exception {
         final FileObject file = 
fsManager.resolveFile(testFile.toURI().toString());
         final CountingListener listener = new CountingListener();
         final DefaultFileMonitor monitor = new DefaultFileMonitor(listener);
@@ -246,7 +246,7 @@ public class DefaultFileMonitorTest extends 
AbstractVfsTestCase {
      * As a result, listeners of stopped monitors still receive events.
      */
     @Ignore("VFS-299")
-    public void testStartStop() throws Exception {
+    public void ignore_testStartStop() throws Exception {
         final FileObject file = 
fsManager.resolveFile(testFile.toURI().toString());
 
         final CountingListener stoppedListener = new CountingListener();

Reply via email to