From: Dominik Stadler Date: Fri, 26 Dec 2014 07:51:46 +0000 (+0000) Subject: One more change in file-pattern to actually exclude .svn files X-Git-Tag: REL_3_12_BETA1~72 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=70d7ec0e693a2de9a7c6540e2fec300b756ecccc;p=poi.git 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 --- 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 files() { DirectoryScanner scanner = new DirectoryScanner(); scanner.setBasedir(new File("test-data")); - scanner.setExcludes(new String[] { "**/.svn" }); + scanner.setExcludes(new String[] { "**/.svn/**" }); scanner.scan();