From 9652de9d825f2e377c4238145cc914bd28fa7111 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 7 Sep 2001 00:47:00 +0000 Subject: [PATCH] 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). --- Lib/test/test_long_future.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_long_future.py b/Lib/test/test_long_future.py index 03d09fca536..cb0ac58b08e 100644 --- a/Lib/test/test_long_future.py +++ b/Lib/test/test_long_future.py @@ -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"]: