Skip to content

Commit cf64924

Browse files
committed
Fix the datetime_numrepr_epoch test
One of the validations is still in range
1 parent 511cbaa commit cf64924

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ def test_datetime_numrepr_epoch():
834834
with pytest.raises(TypeError):
835835
pattern.validate('1000')
836836
with pytest.raises(ValueError):
837-
pattern.validate(1200000)
837+
pattern.validate(200000000)
838838
with pytest.raises(ValueError):
839839
pattern.validate(2000000000000)
840840

0 commit comments

Comments
 (0)