Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
Signed-off-by: Dinu John <[email protected]>
  • Loading branch information
dinujoh committed Nov 15, 2024
1 parent 390acc1 commit 5672bda
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ private static Stream<Arguments> provideDateTimeTestCases() {
return Stream.of(
Arguments.of("2023-12-25 14:30:00.123456", getEpochMillis(2023, 12, 25, 14, 30, 0, 123456000)),
Arguments.of("1970-01-01 00:00:00", getEpochMillis(1970, 1, 1, 0, 0, 0, 0)),
Arguments.of("1703509900000", 1703509900000L)
Arguments.of("1703509900000", 1703509900000L),
Arguments.of("1784161123456789", 1784161123456L)
);
}

Expand Down

0 comments on commit 5672bda

Please sign in to comment.