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 f7efc7b Adjust Linux test.
f7efc7b is described below
commit f7efc7bf21c9541bf0d6f4373f4cba85d72aa844
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jan 12 10:41:10 2021 -0500
Adjust Linux test.
---
.../java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/test/java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java
b/src/test/java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java
index 7e1a64e..1ab9737 100644
--- a/src/test/java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java
+++ b/src/test/java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java
@@ -92,7 +92,7 @@ public class FileUtilsCleanDirectoryTestCase {
FileUtils.cleanDirectory(top);
fail("expected IOException");
} catch (final IOException e) {
- assertEquals("Failed to list contents of " +
top.getAbsolutePath(), e.getMessage());
+ assertEquals("Unknown I/O error listing contents of directory: " +
top.getAbsolutePath(), e.getMessage());
} finally {
chmod(top, 755, false);
}