JAL-4397 Another fix on linux
authorBen Soares <b.soares@dundee.ac.uk>
Mon, 20 May 2024 20:11:02 +0000 (21:11 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Mon, 20 May 2024 20:11:02 +0000 (21:11 +0100)
test/jalview/project/Jalview2xmlTests.java

index 8fd8b31..8b2fa74 100644 (file)
@@ -1485,8 +1485,9 @@ public class Jalview2xmlTests extends Jalview2xmlBase
     assertEquals(ov1Rectangle,
             new Rectangle(20, 30, ov1Rectangle.width, 400));
     int width = ov1Rectangle.width;
-    assertTrue(width >= 200 && width < 225,
-            "Rectangle width was not in the range expected (200<=width<=225)");
+    assertTrue(width >= 200 && width <= 225,
+            "Rectangle width was not in the range expected (200<=width<=225; width="
+                    + width + ")");
     assertTrue(ov1.isShowHiddenRegions());
   }