aboutsummaryrefslogtreecommitdiff
path: root/test/ec/test_mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ec/test_mod.py')
-rw-r--r--test/ec/test_mod.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ec/test_mod.py b/test/ec/test_mod.py
index 7234816..9a6cef0 100644
--- a/test/ec/test_mod.py
+++ b/test/ec/test_mod.py
@@ -157,7 +157,6 @@ def test_other():
assert 5 // b == Mod(4, 7)
assert a / 3 == Mod(4, 7)
assert a // 3 == Mod(4, 7)
- assert divmod(a, b) == (Mod(1, 7), Mod(2, 7))
assert a + b == Mod(1, 7)
assert 5 + b == Mod(1, 7)
assert a + 3 == Mod(1, 7)