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:
Dominik Stadler 2019-10-26 05:27:00 +00:00
parent b574f44920
commit 27c9b651f2
1 changed files with 1 additions and 3 deletions

View File

@ -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 );
}
}