diff options
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r-- | Lib/test/test_long.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 01d567a..104b086 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -296,8 +296,8 @@ def test_auto_overflow(): checkit(x, '*', y) if y: - expected = longx // longy - got = x // y + expected = longx / longy + got = x / y checkit(x, '/', y) expected = longx // longy |