Skip to content

Commit 869770c

Browse files
author
evenisse
committed
merged from tag
1 parent beddb8e commit 869770c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/codehaus/plexus/archiver/jar/IndexTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ public void testCreateArchiveWithIndexedJars()
6161
byte buf[] = new byte[1024];
6262
int i = bis.read(buf);
6363
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);
64+
assertEquals("JarIndex-Version: 1.0\n\narchive2.jar\ntwo.txt\n\narchive1.jar\none.txt\n\n", res.replaceAll("\r\n", "\n"));
6565
}
6666
}

0 commit comments

Comments
 (0)