From: Dominik Stadler Date: Sat, 2 Apr 2016 11:01:49 +0000 (+0000) Subject: Prevent us from changing the file with every test-run X-Git-Tag: REL_3_15_BETA2~379 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d10aab52e794b2cb5ac00ca55622d7f6c6670e1;p=poi.git Prevent us from changing the file with every test-run git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737488 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestZipPackage.java b/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestZipPackage.java index b83f6f972d..d733ade321 100644 --- a/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestZipPackage.java +++ b/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestZipPackage.java @@ -171,7 +171,7 @@ public class TestZipPackage { @Test public void unparseableCentralDirectory() throws IOException { File f = OpenXML4JTestDataSamples.getSampleFile("at.pzp.www_uploads_media_PP_Scheinecker-jdk6error.pptx"); - SlideShow ppt = SlideShowFactory.create(f); + SlideShow ppt = SlideShowFactory.create(f, null, true); ppt.close(); } }