Skip to content

Commit

Permalink
uncomment timezone ntz assert that was disabled for local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mkubik committed Sep 26, 2024
1 parent 31489f8 commit 581968d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,8 @@ public void testMapStructAllTypes() throws SQLException {
.atZone(ZoneId.of("Europe/Warsaw"))
.toInstant(),
object.getTimestampLtz().toInstant());
// assertEquals(
// Timestamp.valueOf(LocalDateTime.of(2021, 12, 23, 9, 44, 44)),
// object.getTimestampNtz());
assertEquals(
Timestamp.valueOf(LocalDateTime.of(2021, 12, 23, 9, 44, 44)), object.getTimestampNtz());
assertEquals(
LocalDateTime.of(2021, 12, 24, 2, 45, 45)
.atZone(ZoneId.of("Europe/Warsaw"))
Expand Down

0 comments on commit 581968d

Please sign in to comment.