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:
Tim Peters 2001-09-07 00:47:00 +00:00
parent c5b235c59c
commit 9652de9d82
1 changed files with 1 additions and 1 deletions

View File

@ -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"]: