Skip to content

Commit

Permalink
test: Fixed range test
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Oct 9, 2024
1 parent 348fee7 commit 45d6254
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void parseRange() {
RangeConverter converter = new RangeConverter();
Assertions.assertEquals(new Range(123, 123), converter.convert("123"));
Assertions.assertEquals(new Range(0, 123), converter.convert("0-123"));
Assertions.assertEquals(new Range(123, 123), converter.convert("123-"));
Assertions.assertEquals(new Range(123, Range.UPPER_BORDER_NOT_DEFINED), converter.convert("123-"));
}

}

0 comments on commit 45d6254

Please sign in to comment.