Skip to content

Commit 1b84c58

Browse files
committed
test: update test case for time with timezone test
1 parent c9697f1 commit 1b84c58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/integration/datatype/_generate_test_datatype_tables.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -428,14 +428,14 @@ def list(cls) -> typing.List["Datatypes"]:
428428
("early", "00:00:00 EST", time(hour=5, minute=0, second=0, tzinfo=timezone.utc)),
429429
("noon", "12:30:10 WDT", time(hour=3, minute=30, second=10, tzinfo=timezone.utc)),
430430
("evening", "18:42:22 GMT", time(hour=18, minute=42, second=22, tzinfo=timezone.utc)),
431-
("night", "22:44:54 CET", time(hour=21, minute=44, second=54, tzinfo=timezone.utc)),
431+
("night", "22:44:54 PDT", time(hour=5, minute=44, second=54, tzinfo=timezone.utc)),
432432
(
433433
"with micro1",
434-
"22:44:54.189717 CET",
435-
time(hour=21, minute=44, second=54, microsecond=189717, tzinfo=timezone.utc),
434+
"22:44:54.189717 PDT",
435+
time(hour=5, minute=44, second=54, microsecond=189717, tzinfo=timezone.utc),
436436
),
437-
("with micro2", "22:44:54.18 CET", time(hour=21, minute=44, second=54, microsecond=18, tzinfo=timezone.utc)),
438-
("end", "24:00:00 WET", time(hour=0, minute=0, second=0, tzinfo=timezone.utc)),
437+
("with micro2", "22:44:54.18 PDT", time(hour=5, minute=44, second=54, microsecond=18, tzinfo=timezone.utc)),
438+
("end", "24:00:00 CST", time(hour=6, minute=0, second=0, tzinfo=timezone.utc)),
439439
),
440440
}
441441

0 commit comments

Comments
 (0)