aboutsummaryrefslogtreecommitdiffstats
path: root/src/integrationtest
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2014-12-26 07:51:46 +0000
committerDominik Stadler <centic@apache.org>2014-12-26 07:51:46 +0000
commit70d7ec0e693a2de9a7c6540e2fec300b756ecccc (patch)
tree4d30245d314f3792186f3f49ee98cb32d289f98b /src/integrationtest
parentb33735cf08970f01c68e04bc6476eb59c9b6da9b (diff)
downloadpoi-70d7ec0e693a2de9a7c6540e2fec300b756ecccc.tar.gz
poi-70d7ec0e693a2de9a7c6540e2fec300b756ecccc.zip
One more change in file-pattern to actually exclude .svn files
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1647941 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest')
-rw-r--r--src/integrationtest/org/apache/poi/TestAllFiles.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrationtest/org/apache/poi/TestAllFiles.java b/src/integrationtest/org/apache/poi/TestAllFiles.java
index f828bf2863..cc594d06f2 100644
--- a/src/integrationtest/org/apache/poi/TestAllFiles.java
+++ b/src/integrationtest/org/apache/poi/TestAllFiles.java
@@ -223,7 +223,7 @@ public class TestAllFiles {
public static Iterable<Object[]> files() {
DirectoryScanner scanner = new DirectoryScanner();
scanner.setBasedir(new File("test-data"));
- scanner.setExcludes(new String[] { "**/.svn" });
+ scanner.setExcludes(new String[] { "**/.svn/**" });
scanner.scan();