Skip to content

Commit

Permalink
Fix RangeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jun 20, 2023
1 parent c006f2b commit a9d6806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binding/src/test/java/org/jsonx/RangeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void test() throws ParseException {
fail("Expected IllegalArgumentException");
}
catch (final IllegalArgumentException e) {
assertEquals("scale must be positive", e.getMessage());
assertEquals("scale (-1) must be positive", e.getMessage());
}

try {
Expand Down

0 comments on commit a9d6806

Please sign in to comment.