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 6979d1a commit df09ef8Copy full SHA for df09ef8
src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java
@@ -202,6 +202,7 @@ public void testFileContentEquals() throws Exception {
202
public void testFileContentEqualsZip() throws Exception {
203
final Path path1 = Paths.get("src/test/resources/org/apache/commons/io/bla.zip");
204
final Path path2 = Paths.get("src/test/resources/org/apache/commons/io/bla-copy.zip");
205
+ // moby.zip is from https://issues.apache.org/jira/browse/COMPRESS-93
206
final Path path3 = Paths.get("src/test/resources/org/apache/commons/io/moby.zip");
207
assertTrue(PathUtils.fileContentEquals(path1, path2));
208
assertFalse(PathUtils.fileContentEquals(path1, path3));
0 commit comments