diff options
Diffstat (limited to 'poi-integration/src')
-rw-r--r-- | poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java index d487fffe06..8c94027459 100644 --- a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java +++ b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java @@ -135,11 +135,11 @@ public class TestAllFiles { final List<Arguments> result = new ArrayList<>(100); for (String file : scanner.getIncludedFiles()) { - // avoid running on files leftover from previous failed runs - // or being created by tests run in parallel - if(file.endsWith("-saved.xls") || file.endsWith("TestHPSFWritingFunctionality.doc")) { - continue; - } + // avoid running on files leftover from previous failed runs + // or being created by tests run in parallel + if(file.endsWith("-saved.xls") || file.endsWith("TestHPSFWritingFunctionality.doc")) { + continue; + } for (FileHandlerKnown handler : sm.getHandler(file)) { ExcInfo info1 = sm.getExcInfo(file, testName, handler); |