We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f56e2f commit 0d8ec94Copy full SHA for 0d8ec94
tests/table/test_partitioning.py
@@ -186,8 +186,8 @@ def test_partition_type(table_schema_simple: Schema) -> None:
186
(DecimalType(5, 9), Decimal(19.25)),
187
(DateType(), datetime.date(1925, 5, 22)),
188
(TimeType(), datetime.time(19, 25, 00)),
189
- (TimestampType(), datetime.datetime(22, 5, 1, 22, 1, 1)),
190
- (TimestamptzType(), datetime.datetime(22, 5, 1, 22, 1, 1, tzinfo=datetime.timezone.utc)),
+ (TimestampType(), datetime.datetime(2022, 5, 1, 22, 1, 1)),
+ (TimestamptzType(), datetime.datetime(2022, 5, 1, 22, 1, 1, tzinfo=datetime.timezone.utc)),
191
(StringType(), "abc"),
192
(UUIDType(), UUID("12345678-1234-5678-1234-567812345678").bytes),
193
(FixedType(5), 'b"\x8e\xd1\x87\x01"'),
0 commit comments