From: Mark Dickinson Date: Fri, 30 May 2008 02:46:53 +0000 (+0000) Subject: Fix typo in testSum X-Git-Tag: v2.6b1~201 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8df4e22a2841e59fb4b7e14a846be980115605ba;p=thirdparty%2FPython%2Fcpython.git Fix typo in testSum --- diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 095e65744abc..426ca7b6d595 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -740,7 +740,7 @@ class MathTests(unittest.TestCase): OverflowError), ([2.**1023, 2.**1023, -1e307], OverflowError), ([1e16, 1., 1e-16], 10000000000000002.0), - ([1e16-2., 1.-2.**53, -(1e16-2.), -(1.-2.**53)], 0.0), + ([1e16-2., 1.-2.**-53, -(1e16-2.), -(1.-2.**-53)], 0.0), ] for i, (vals, s) in enumerate(test_values):