git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ca708a
)
JAL-4397 Another fix on linux
author
Ben Soares
<b.soares@dundee.ac.uk>
Mon, 20 May 2024 20:11:02 +0000
(21:11 +0100)
committer
Ben Soares
<b.soares@dundee.ac.uk>
Mon, 20 May 2024 20:11:02 +0000
(21:11 +0100)
test/jalview/project/Jalview2xmlTests.java
patch
|
blob
|
history
diff --git
a/test/jalview/project/Jalview2xmlTests.java
b/test/jalview/project/Jalview2xmlTests.java
index
8fd8b31
..
8b2fa74
100644
(file)
--- a/
test/jalview/project/Jalview2xmlTests.java
+++ b/
test/jalview/project/Jalview2xmlTests.java
@@
-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());
}