From 2a24e82b1fd22c7a27adcbad6e3b7c0b86160e41 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 18 Jul 2024 10:55:52 -0400 Subject: [PATCH] test: fix to use IANA time zone --- tests/test_edgeql_functions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_edgeql_functions.py b/tests/test_edgeql_functions.py index faff47a2d74a..a1fa2d532a97 100644 --- a/tests/test_edgeql_functions.py +++ b/tests/test_edgeql_functions.py @@ -2338,7 +2338,7 @@ async def test_edgeql_functions_to_local_datetime_01(self): r''' SELECT cal::to_local_datetime( '2018-05-07T20:01:22.306916+00:00', - 'US/Pacific'); + 'America/Los_Angeles'); ''', ['2018-05-07T13:01:22.306916'], ) @@ -2457,7 +2457,7 @@ async def test_edgeql_functions_to_local_date_02(self): r''' SELECT cal::to_local_date( '2018-05-07T20:01:22.306916+00:00', - 'US/Pacific'); + 'America/Los_Angeles'); ''', ['2018-05-07'], ) @@ -2528,7 +2528,7 @@ async def test_edgeql_functions_to_local_time_02(self): r''' SELECT cal::to_local_time( '2018-05-07T20:01:22.306916+00:00', - 'US/Pacific'); + 'America/Los_Angeles'); ''', ['13:01:22.306916'], )