JAL-3949 fixed failing commandlinetests due to more output and line count limit
authorBen Soares <b.soares@dundee.ac.uk>
Fri, 11 Feb 2022 14:15:09 +0000 (14:15 +0000)
committerBen Soares <b.soares@dundee.ac.uk>
Fri, 11 Feb 2022 14:15:09 +0000 (14:15 +0000)
test/jalview/bin/CommandLineOperations.java

index a539f78..4323699 100644 (file)
@@ -253,7 +253,7 @@ public class CommandLineOperations
     {
       System.out.println(ln);
       successfulCMDs.add(ln);
-      if (++count > 25)
+      if (++count > 50)
       {
         break;
       }
@@ -275,7 +275,7 @@ public class CommandLineOperations
 
   @Test(
     groups =
-    { "Functional", "testben" },
+    { "Functional" },
     dataProvider = "headlessModeOutputOperationsData")
   public void testHeadlessModeOutputOperations(String harg, String type,
           String fileName, boolean withAWT, int expectedMinFileSize,