Commit 9652de9d authored by Tim Peters's avatar Tim Peters

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).
parent c5b235c5
......@@ -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"]:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment