mirror of https://github.com/apache/poi.git
Try to fix test which is still failing on Windows in a different way
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1868984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b574f44920
commit
27c9b651f2
|
@ -107,9 +107,7 @@ public final class TestEscherBSERecord {
|
|||
"\t, \"blipRecord\": null\n" +
|
||||
"\t, \"remainingData\": \"\"\n" +
|
||||
"}";
|
||||
expected = expected.replace("\n", System.getProperty("line.separator"));
|
||||
String actual = record.toString();
|
||||
String actual = record.toString().replace("\r", "");
|
||||
assertEquals( expected, actual );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue