Skip to content

Commit f7efc7b

Browse files
author
Gary Gregory
committed
Adjust Linux test.
1 parent e2993b3 commit f7efc7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/io/FileUtilsCleanDirectoryTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void testThrowsOnNullList() throws Exception {
9292
FileUtils.cleanDirectory(top);
9393
fail("expected IOException");
9494
} catch (final IOException e) {
95-
assertEquals("Failed to list contents of " + top.getAbsolutePath(), e.getMessage());
95+
assertEquals("Unknown I/O error listing contents of directory: " + top.getAbsolutePath(), e.getMessage());
9696
} finally {
9797
chmod(top, 755, false);
9898
}

0 commit comments

Comments
 (0)