mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-22 05:49:59 +03:00
formatting
This commit is contained in:
parent
9e03fede1a
commit
56614630e7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user