Skip to content

Commit

Permalink
test: fix to use IANA time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Jul 19, 2024
1 parent ea8f67b commit 2a24e82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_edgeql_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2338,7 +2338,7 @@ async def test_edgeql_functions_to_local_datetime_01(self):
r'''
SELECT <str>cal::to_local_datetime(
<datetime>'2018-05-07T20:01:22.306916+00:00',
'US/Pacific');
'America/Los_Angeles');
''',
['2018-05-07T13:01:22.306916'],
)
Expand Down Expand Up @@ -2457,7 +2457,7 @@ async def test_edgeql_functions_to_local_date_02(self):
r'''
SELECT <str>cal::to_local_date(
<datetime>'2018-05-07T20:01:22.306916+00:00',
'US/Pacific');
'America/Los_Angeles');
''',
['2018-05-07'],
)
Expand Down Expand Up @@ -2528,7 +2528,7 @@ async def test_edgeql_functions_to_local_time_02(self):
r'''
SELECT <str>cal::to_local_time(
<datetime>'2018-05-07T20:01:22.306916+00:00',
'US/Pacific');
'America/Los_Angeles');
''',
['13:01:22.306916'],
)
Expand Down

0 comments on commit 2a24e82

Please sign in to comment.