From a81e69ac40487bc1f799689ab6684172136def00 Mon Sep 17 00:00:00 2001 From: Ryan Senior <ryan@metabase.com> Date: Mon, 29 Oct 2018 10:46:33 -0500 Subject: [PATCH] Change the Snowflake TZ test exception Before the date was not being casted (needed for other Drivers). Now that it is being casted, the date is off by another day. --- .../metabase/query_processor/middleware/parameters/sql_test.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/metabase/query_processor/middleware/parameters/sql_test.clj b/test/metabase/query_processor/middleware/parameters/sql_test.clj index 9fa4daddca9..2cd581dbd72 100644 --- a/test/metabase/query_processor/middleware/parameters/sql_test.clj +++ b/test/metabase/query_processor/middleware/parameters/sql_test.clj @@ -616,7 +616,7 @@ ;; up as https://github.com/metabase/metabase/issues/8804 and when fixed this should be removed as it should ;; return the same value as the other drivers that support a report timezone (= :snowflake datasets/*engine*) - "2018-04-17T17:00:00.000-07:00" + "2018-04-16T17:00:00.000-07:00" (qpt/supports-report-timezone? datasets/*engine*) "2018-04-18T00:00:00.000-07:00" -- GitLab