diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-03-20 10:26:05 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-03-20 10:26:05 +0000 |
commit | d01334905266f1ffa103736723a32bd418f875ac (patch) | |
tree | d3256fe4ed4704bd1369c8d9ea9f1849dedd7f76 /poi-integration | |
parent | 1ab968419e84683b5f7d286ed7626e545b53feeb (diff) | |
download | poi-d01334905266f1ffa103736723a32bd418f875ac.tar.gz poi-d01334905266f1ffa103736723a32bd418f875ac.zip |
use spaces for indents
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899082 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration')
-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); |