Skip to content

Commit

Permalink
fix(sqlite): fix falling test
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Nov 1, 2023
1 parent bdd16c6 commit 382241c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ void select() throws Exception {
assertThat(runOutput.getRow().get("int_column"), is(42));

assertThat(runOutput.getRow().get("date_column"), is(LocalDate.parse("2023-10-30")));
assertThat(runOutput.getRow().get("datetime_column"), is(Instant.parse("2023-10-30T21:02:27.150Z")));
assertThat(runOutput.getRow().get("datetime_column"), is(Instant.parse("2023-10-30T22:02:27.150Z")));
assertThat(runOutput.getRow().get("time_column"), is(LocalTime.parse("14:30:00")));
assertThat(runOutput.getRow().get("timestamp_column"), is(Instant.parse("2023-10-30T12:30:00.0Z")));
assertThat(runOutput.getRow().get("timestamp_column"), is(Instant.parse("2023-10-30T13:30:00.0Z")));
assertThat(runOutput.getRow().get("year_column"), is(2023));

assertThat(runOutput.getRow().get("json_column"), is("{\"key\": \"value\"}"));
Expand Down

0 comments on commit 382241c

Please sign in to comment.