JAL-4445 - increase the fileglob expected counts
authorJim Procter <jprocter@dundee.ac.uk>
Thu, 1 Aug 2024 15:14:15 +0000 (16:14 +0100)
committerJim Procter <jprocter@dundee.ac.uk>
Thu, 1 Aug 2024 15:14:15 +0000 (16:14 +0100)
test/jalview/util/FileUtilsTest.java

index 3cc9ca6..acc754f 100644 (file)
@@ -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
     };
   }