mirror of https://github.com/python/cpython.git
Fix typo in error reporting. This doesn't need to go into the release
branch (if it ever gets to the typo, the test is failing anyway).
This commit is contained in:
parent
c5b235c59c
commit
9652de9d82
|
@ -41,7 +41,7 @@ def test_true_division():
|
|||
"100 / mhuge", "100L / mhuge"]:
|
||||
result = eval(underflow, namespace)
|
||||
if result != 0.0:
|
||||
raise TestFailed("expected undeflow to 0 from %r" % undeflow)
|
||||
raise TestFailed("expected underflow to 0 from %r" % underflow)
|
||||
|
||||
for zero in ["huge / 0", "huge / 0L",
|
||||
"mhuge / 0", "mhuge / 0L"]:
|
||||
|
|
Loading…
Reference in New Issue