Skip to content

Commit

Permalink
Fix test with 32-bit time_t
Browse files Browse the repository at this point in the history
  • Loading branch information
viccie30 authored and Tinche committed Dec 24, 2021
1 parent bc9432e commit a0e56f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_preconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def everythings(
)
)
dts = datetimes(
min_value=datetime(1900, 1, 1),
max_value=datetime(2200, 1, 1),
min_value=datetime(1904, 1, 1),
max_value=datetime(2038, 1, 1),
timezones=just(timezone.utc),
)
if not allow_datetime_microseconds:
Expand Down

0 comments on commit a0e56f4

Please sign in to comment.