remove stray stacktrace

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839385 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-08-28 01:49:16 +00:00
parent 45558cda65
commit 45d85a05af

View File

@ -1946,7 +1946,6 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
fail("should have thrown SAXParseException"); fail("should have thrown SAXParseException");
} catch (SAXParseException e) { } catch (SAXParseException e) {
assertNotNull(e.getMessage()); assertNotNull(e.getMessage());
e.printStackTrace();
assertTrue(e.getMessage().contains("more than \"1\" entity")); assertTrue(e.getMessage().contains("more than \"1\" entity"));
} }
} }