Browse Source

Adjust test to pass forbidden-apis-check

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1727693 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_14_FINAL
Dominik Stadler 8 years ago
parent
commit
7622fde4b7

+ 3
- 3
src/testcases/org/apache/poi/hssf/extractor/TestOldExcelExtractor.java View File

@@ -312,7 +312,7 @@ public final class TestOldExcelExtractor {
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
try {
PrintStream str = new PrintStream(out);
PrintStream str = new PrintStream(out, false, "UTF-8");
System.setErr(str);
OldExcelExtractor.main(new String[] {});
} finally {
@@ -330,13 +330,13 @@ public final class TestOldExcelExtractor {
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
try {
PrintStream str = new PrintStream(out);
PrintStream str = new PrintStream(out, false, "UTF-8");
System.setOut(str);
OldExcelExtractor.main(new String[] {file.getAbsolutePath()});
} finally {
out.close();
}
String string = new String(out.toByteArray());
String string = new String(out.toByteArray(), "UTF-8");
assertTrue("Had: " + string,
string.contains("Table C-13--Lemons"));
} finally {

Loading…
Cancel
Save