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 d47d625  Only disable failing tests, not the whole class.
d47d625 is described below

commit d47d625275b05643459d47ea9862e827bd672653
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Oct 31 14:12:23 2021 -0400

    Only disable failing tests, not the whole class.
---
 src/test/java/org/apache/commons/io/DeleteDirectoryTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/DeleteDirectoryTest.java 
b/src/test/java/org/apache/commons/io/DeleteDirectoryTest.java
index bb339ab..f27d5dd 100644
--- a/src/test/java/org/apache/commons/io/DeleteDirectoryTest.java
+++ b/src/test/java/org/apache/commons/io/DeleteDirectoryTest.java
@@ -44,7 +44,6 @@ import org.junit.jupiter.api.io.TempDir;
  * Must be run on macOS or Linux, not Windows.
  * </p>
  */
-@Disabled
 public class DeleteDirectoryTest {
 
     @BeforeAll
@@ -89,6 +88,7 @@ public class DeleteDirectoryTest {
     }
 
     @Test
+    @Disabled
     public void testDeleteDirectoryWithFileUtils() throws IOException {
         testDeleteDirectory(dir -> FileUtils.deleteDirectory(dir.toFile()));
     }
@@ -99,6 +99,7 @@ public class DeleteDirectoryTest {
     }
 
     @Test
+    @Disabled
     public void testDeleteDirectoryWithPathUtilsOverrideReadOnly() throws 
IOException {
         testDeleteDirectory(dir -> PathUtils.deleteDirectory(dir, 
StandardDeleteOption.OVERRIDE_READ_ONLY));
     }

Reply via email to