]> source.dussan.org Git - poi.git/commitdiff
Fix ROOT_DIR
authorDominik Stadler <centic@apache.org>
Fri, 17 Mar 2017 12:03:07 +0000 (12:03 +0000)
committerDominik Stadler <centic@apache.org>
Fri, 17 Mar 2017 12:03:07 +0000 (12:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1787330 13f79535-47bb-0310-9956-ffa450edef68

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

index 2311421aaa65880d4807cedf57e7af4bf8515679..f69b2300dae5321566daa94d63c6134ae9897f4d 100644 (file)
@@ -85,7 +85,7 @@ import org.junit.runners.Parameterized.Parameters;
 @RunWith(Parameterized.class)
 public class TestAllFiles {
 
-    private static final File ROOT_DIR = new File("C:/users/tallison/idea projects/poi-trunk/test-data");
+    private static final File ROOT_DIR = new File("test-data");
 
     static final String[] SCAN_EXCLUDES = new String[] { "**/.svn/**", "lost+found" };
     
index 9b07d488a5bde902985f059ef855ce398d0aeeba..52691de9a04f073daf8c57d788273c62ee6dfec9 100644 (file)
@@ -39,7 +39,6 @@ public class XSSFBFileHandler extends AbstractFileHandler {
         );
     }
 
-
     @Override
     public void handleFile(InputStream stream) throws Exception {
         ByteArrayOutputStream out = new ByteArrayOutputStream();
@@ -54,13 +53,11 @@ public class XSSFBFileHandler extends AbstractFileHandler {
         }
 
         testNotHandledByWorkbookException(OPCPackage.open(new ByteArrayInputStream(bytes)));
-
     }
 
     private void testNotHandledByWorkbookException(OPCPackage pkg) throws IOException {
-
         try {
-            XSSFWorkbook workbook = new XSSFWorkbook(pkg);
+            new XSSFWorkbook(pkg);
         } catch (XLSBUnsupportedException e) {
             //this is what we'd expect
             //swallow
@@ -90,7 +87,5 @@ public class XSSFBFileHandler extends AbstractFileHandler {
         if (txt.length() < 1) {
             throw new RuntimeException("Should have gotten some text.");
         }
-
     }
-
 }