]> source.dussan.org Git - poi.git/commitdiff
Correctly handle all types of old files, not just word
authorDominik Stadler <centic@apache.org>
Fri, 21 Oct 2016 16:31:43 +0000 (16:31 +0000)
committerDominik Stadler <centic@apache.org>
Fri, 21 Oct 2016 16:31:43 +0000 (16:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766064 13f79535-47bb-0310-9956-ffa450edef68

src/integrationtest/org/apache/poi/TestAllFiles.java

index d6581b9a10ed266ca990b8ff3f22771ed554dcf4..e0e2c0bde2e337cf350e44a4f9314d18eabb0f8e 100644 (file)
@@ -17,7 +17,6 @@
 package org.apache.poi;
 
 
-import org.apache.poi.hwpf.OldWordFileFormatException;
 import org.apache.poi.stress.*;
 import org.apache.tools.ant.DirectoryScanner;
 import org.junit.Test;
@@ -353,7 +352,7 @@ public class TestAllFiles {
 
             assertFalse("Expected to fail for file " + file + " and handler " + handler + ", but did not fail!", 
                 EXPECTED_FAILURES.contains(file) && !ignoredOPC);
-        } catch (OldWordFileFormatException e) {
+        } catch (OldFileFormatException e) {
             // for old word files we should still support extracting text
             if(OLD_FILES.contains(file)) {
                 handler.handleExtracting(inputFile);