Skip to content

Commit

Permalink
Fix java.sql.Timestamp comparison in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shirolimit committed Jan 29, 2025
1 parent 226d8cc commit b28c388
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private static void assertEventData(UpdateRowsEventData actual) {
"4K",
"259011111",
"4559363392190810",
Timestamp.valueOf("2024-12-11 02:02:47.0"),
new Timestamp(1733878967000L),
"GC",
new BigDecimal("50000.00"),
new BigDecimal("0.0500"),
Expand All @@ -179,7 +179,7 @@ private static void assertEventData(UpdateRowsEventData actual) {
"4K",
"259011111",
"4559363392190810",
Timestamp.valueOf("2024-12-11 02:02:47.0"),
new Timestamp(1733878967000L),
"GC",
new BigDecimal("50000.00"),
new BigDecimal("0.0500"),
Expand Down

0 comments on commit b28c388

Please sign in to comment.