Skip to content

Commit a0e56f4

Browse files
viccie30Tinche
authored andcommitted
Fix test with 32-bit time_t
1 parent bc9432e commit a0e56f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_preconf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def everythings(
103103
)
104104
)
105105
dts = datetimes(
106-
min_value=datetime(1900, 1, 1),
107-
max_value=datetime(2200, 1, 1),
106+
min_value=datetime(1904, 1, 1),
107+
max_value=datetime(2038, 1, 1),
108108
timezones=just(timezone.utc),
109109
)
110110
if not allow_datetime_microseconds:

0 commit comments

Comments
 (0)