Make "normalizing" the file-path actually work

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888021 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/integrationtest/org/apache/poi/stress/AbstractFileHandler.java b/src/integrationtest/org/apache/poi/stress/AbstractFileHandler.java
index 72f99c3..01a4ebc 100644
--- a/src/integrationtest/org/apache/poi/stress/AbstractFileHandler.java
+++ b/src/integrationtest/org/apache/poi/stress/AbstractFileHandler.java
@@ -89,7 +89,7 @@
         String fileAndParentName = file.getParentFile().getName() + "/" + file.getName();
         try {
             // fix windows absolute paths for exception message tracking
-            String relPath = file.getPath().replace(".*test-data", "test-data").replace('\\', '/');
+            String relPath = file.getPath().replaceAll(".*test-data", "test-data").replace('\\', '/');
             extractor = ExtractorFactory.createExtractor(file);
             assertNotNull(extractor, "Should get a POITextExtractor but had none for file " + relPath);
 
diff --git a/src/integrationtest/org/apache/poi/stress/XSSFFileHandler.java b/src/integrationtest/org/apache/poi/stress/XSSFFileHandler.java
index def8750..beb3a8e 100644
--- a/src/integrationtest/org/apache/poi/stress/XSSFFileHandler.java
+++ b/src/integrationtest/org/apache/poi/stress/XSSFFileHandler.java
@@ -223,6 +223,11 @@
     }
 
     @Test
+    void testExtracting() throws Exception {
+        handleExtracting(new File("test-data/spreadsheet/ref-56737.xlsx"));
+    }
+
+    @Test
     void testAdditional() throws Exception {
         handleAdditional(new File("test-data/spreadsheet/poc-xmlbomb.xlsx"));
     }