We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0783086 commit 3a71172Copy full SHA for 3a71172
src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java
@@ -116,7 +116,7 @@ public void testDirectoryAndFileContentEqualsDiffFileSystems() throws Exception
116
117
// create FileSystem view into the zip
118
try (FileSystem zipFs = FileSystems.newFileSystem(zipFile, ClassLoader.getSystemClassLoader())) {
119
- final Path dir2 = zipFs.getPath("");
+ final Path dir2 = zipFs.getPath("/");
120
assertNotEquals(dir1.getFileSystem(), dir2.getFileSystem());
121
assertTrue(PathUtils.directoryAndFileContentEquals(dir1, dir2));
122
}
0 commit comments