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
This commit is contained in:
Dominik Stadler 2016-04-02 11:01:49 +00:00
parent 328c52aab7
commit 205055b83c
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}