diff --git a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java index a06606f0d2..9eda9586f6 100644 --- a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java +++ b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java @@ -75,6 +75,7 @@ public class TestAllFiles { "**/.svn/**", "lost+found", "**/.git/**", + "**/ExternalEntityInText.docx", //the DocType (DTD) declaration causes this to fail "**/right-to-left.xlsx" //the threaded comments in this file cause XSSF clone to fail }; diff --git a/poi-integration/src/test/java/org/apache/poi/stress/XWPFFileHandler.java b/poi-integration/src/test/java/org/apache/poi/stress/XWPFFileHandler.java index b61128f63f..999869773d 100644 --- a/poi-integration/src/test/java/org/apache/poi/stress/XWPFFileHandler.java +++ b/poi-integration/src/test/java/org/apache/poi/stress/XWPFFileHandler.java @@ -28,7 +28,7 @@ import org.junit.jupiter.api.Test; class XWPFFileHandler extends AbstractFileHandler { private static final Set EXPECTED_FAILURES = StressTestUtils.unmodifiableHashSet( - "document/truncated62886.docx" + "document/truncated62886.docx", "document/ExternalEntityInText.docx" ); @Override diff --git a/poi-integration/src/test/java9/module-info.class b/poi-integration/src/test/java9/module-info.class index 4f3e0f3bba..92a6b8ee9e 100644 Binary files a/poi-integration/src/test/java9/module-info.class and b/poi-integration/src/test/java9/module-info.class differ