From: Tim Peters Date: Fri, 7 Sep 2001 00:47:00 +0000 (+0000) Subject: Fix typo in error reporting. This doesn't need to go into the release X-Git-Tag: v2.2a3~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9652de9d825f2e377c4238145cc914bd28fa7111;p=thirdparty%2FPython%2Fcpython.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). --- diff --git a/Lib/test/test_long_future.py b/Lib/test/test_long_future.py index 03d09fca5366..cb0ac58b08e3 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"]: