diff options
Diffstat (limited to 'tests/basics/int_big_mod.py')
| -rw-r--r-- | tests/basics/int_big_mod.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basics/int_big_mod.py b/tests/basics/int_big_mod.py index f383553c1..e87221c1c 100644 --- a/tests/basics/int_big_mod.py +++ b/tests/basics/int_big_mod.py @@ -4,8 +4,8 @@ delta = 100000000000000000000000000000012345 for i in range(11): for j in range(11): - x = delta * (i)# - 5) # TODO reinstate negative number test when % is working with sign correctly - y = delta * (j)# - 5) # TODO reinstate negative number test when % is working with sign correctly + x = delta * (i - 5) + y = delta * (j - 5) if y != 0: print(x % y) |
