Skip to content

Commit

Permalink
Update test case for edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Jun 4, 2024
1 parent e6971b4 commit 244da3f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ static List<Arguments> ranges() {
Arguments.of(null, parse("2024-05-03"), NOT_REMOVED),
Arguments.of(null, parse("2024-05-01"), NOT_REMOVED),
Arguments.of(parse("2024-05-03"), null, NOT_REMOVED),
Arguments.of(parse("2024-05-01"), null, NOT_REMOVED),
Arguments.of(parse("2024-05-02"), parse("2024-05-02"), REMOVED),
Arguments.of(parse("2024-05-02"), parse("2024-05-03"), REMOVED),
Arguments.of(parse("2025-01-01"), null, REMOVED),
Expand Down

0 comments on commit 244da3f

Please sign in to comment.