mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue