mirror of https://github.com/apache/poi.git
update test assertion
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895423 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0bcaa5789e
commit
74997afe6a
|
@ -87,7 +87,7 @@ public class TestXLSX2CSV {
|
|||
}
|
||||
|
||||
String errorOutput = errorBytes.toString(StandardCharsets.UTF_8);
|
||||
assertEquals(0, errorOutput.length());
|
||||
assertEquals("", errorOutput);
|
||||
|
||||
String output = outputBytes.toString(StandardCharsets.UTF_8);
|
||||
assertTrue(output.contains("\"Lorem\",111"), "Had: " + output);
|
||||
|
@ -106,7 +106,7 @@ public class TestXLSX2CSV {
|
|||
}
|
||||
|
||||
String errorOutput = errorBytes.toString(StandardCharsets.UTF_8);
|
||||
assertEquals(0, errorOutput.length());
|
||||
assertEquals("", errorOutput);
|
||||
|
||||
String output = outputBytes.toString(StandardCharsets.UTF_8);
|
||||
assertTrue(output.contains("\"Lorem\",111,,,"), "Had: " + output);
|
||||
|
|
Loading…
Reference in New Issue