From 3f26ecca3da95036470a9a7848d0fd3772ed1f5f Mon Sep 17 00:00:00 2001 From: Vlad Ilyushchenko Date: Thu, 12 Nov 2020 18:39:25 +0000 Subject: [PATCH] fix(std): picked more stable time zone for tests (#699) --- .../java/io/questdb/std/microtime/DateFormatCompilerTest.java | 2 +- .../test/java/io/questdb/std/time/DateFormatCompilerTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/test/java/io/questdb/std/microtime/DateFormatCompilerTest.java b/core/src/test/java/io/questdb/std/microtime/DateFormatCompilerTest.java index 43c88d77f..e69e3c590 100644 --- a/core/src/test/java/io/questdb/std/microtime/DateFormatCompilerTest.java +++ b/core/src/test/java/io/questdb/std/microtime/DateFormatCompilerTest.java @@ -656,7 +656,7 @@ public class DateFormatCompilerTest { @Test public void testTimeZone1() throws Exception { - assertThat("dd-MM-yy HH:m z", "2010-09-03T22:54:00.000Z", "03-09-10 14:54 PST"); + assertThat("dd-MM-yy HH:m z", "2010-09-03T11:54:00.000Z", "03-09-10 14:54 EAT"); } @Test diff --git a/core/src/test/java/io/questdb/std/time/DateFormatCompilerTest.java b/core/src/test/java/io/questdb/std/time/DateFormatCompilerTest.java index ff1183779..8e30a5630 100644 --- a/core/src/test/java/io/questdb/std/time/DateFormatCompilerTest.java +++ b/core/src/test/java/io/questdb/std/time/DateFormatCompilerTest.java @@ -628,7 +628,7 @@ public class DateFormatCompilerTest { @Test public void testTimeZone1() throws Exception { - assertThat("dd-MM-yy HH:m z", "2010-09-03T22:54:00.000Z", "03-09-10 14:54 PST"); + assertThat("dd-MM-yy HH:m z", "2010-09-03T11:54:00.000Z", "03-09-10 14:54 EAT"); } @Test -- GitLab