formatting

This commit is contained in:
Paul Bailey 2020-08-27 16:31:52 -05:00
parent 9e03fede1a
commit 56614630e7

View File

@ -13,8 +13,8 @@ def test_ints():
assert Int.parse_value(2 ** 31 - 1) is not None
assert Int.parse_value(2 ** 31) is None
assert Int.parse_value(-2 ** 31) is not None
assert Int.parse_value(-2 ** 31 - 1) is None
assert Int.parse_value(-(2 ** 31)) is not None
assert Int.parse_value(-(2 ** 31) - 1) is None
assert BigInt.parse_value(2 ** 31) is not None
assert BigInt.parse_value(-2 ** 31 - 1) is not None
assert BigInt.parse_value(-(2 ** 31) - 1) is not None