From 4c6e8988019f054c89726f8acc19516d343250f8 Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Thu, 1 Aug 2024 16:14:15 +0100 Subject: [PATCH] JAL-4445 - increase the fileglob expected counts --- test/jalview/util/FileUtilsTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/jalview/util/FileUtilsTest.java b/test/jalview/util/FileUtilsTest.java index 3cc9ca6..acc754f 100644 --- a/test/jalview/util/FileUtilsTest.java +++ b/test/jalview/util/FileUtilsTest.java @@ -77,6 +77,10 @@ public class FileUtilsTest + d + "' contains '" + notInDirname + "' when it shouldn't"); } + /** + * these need to be maintained as jalview's source base grows + * @return + */ @DataProvider(name = "patternsAndMinNumFiles") public Object[][] patternsAndMinNumFiles() { @@ -90,7 +94,7 @@ public class FileUtilsTest { "test/jalview/**/F*.java", 18, 30 }, // 20 at time of writing { "test/jalview/util/F**.java", 1, 5 }, // 2 at time of writing { "src/jalview/b*/*.java", 14, 19 }, // 15 at time of writing - { "src/jalview/b**/*.java", 20, 25 }, // 22 at time of writing + { "src/jalview/b**/*.java", 23, 26 }, // 22 at time of writing }; } -- 1.7.10.2