diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-05-30 02:46:53 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-05-30 02:46:53 (GMT) |
commit | 8df4e22a2841e59fb4b7e14a846be980115605ba (patch) | |
tree | 899223e086e159a42b22cc3e1f6caa5e1325b1ff | |
parent | 6983ff74758ddd2e9865c515e5d8671dbc6352c5 (diff) | |
download | cpython-8df4e22a2841e59fb4b7e14a846be980115605ba.zip cpython-8df4e22a2841e59fb4b7e14a846be980115605ba.tar.gz cpython-8df4e22a2841e59fb4b7e14a846be980115605ba.tar.bz2 |
Fix typo in testSum
-rw-r--r-- | Lib/test/test_math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 095e657..426ca7b 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): |