Skip to content

Commit

Permalink
test: Fixed compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Oct 9, 2024
1 parent b1e3eba commit 20e8196
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), converter.convert("123-"));
Assertions.assertEquals(new Range(123, 123), converter.convert("123-"));
}

}

0 comments on commit 20e8196

Please sign in to comment.