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