Skip to content

Commit 3a71172

Browse files
committed
Fix test for Java 8
1 parent 0783086 commit 3a71172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void testDirectoryAndFileContentEqualsDiffFileSystems() throws Exception
116116

117117
// create FileSystem view into the zip
118118
try (FileSystem zipFs = FileSystems.newFileSystem(zipFile, ClassLoader.getSystemClassLoader())) {
119-
final Path dir2 = zipFs.getPath("");
119+
final Path dir2 = zipFs.getPath("/");
120120
assertNotEquals(dir1.getFileSystem(), dir2.getFileSystem());
121121
assertTrue(PathUtils.directoryAndFileContentEquals(dir1, dir2));
122122
}

0 commit comments

Comments
 (0)