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 beddb8e commit 869770cCopy full SHA for 869770c
src/test/java/org/codehaus/plexus/archiver/jar/IndexTest.java
@@ -61,6 +61,6 @@ public void testCreateArchiveWithIndexedJars()
61
byte buf[] = new byte[1024];
62
int i = bis.read(buf);
63
String res = new String(buf,0,i);
64
- assertEquals("JarIndex-Version: 1.0\n\narchive2.jar\ntwo.txt\n\narchive1.jar\none.txt\n\n", res);
+ assertEquals("JarIndex-Version: 1.0\n\narchive2.jar\ntwo.txt\n\narchive1.jar\none.txt\n\n", res.replaceAll("\r\n", "\n"));
65
}
66
0 commit comments