summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_math.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-28 01:11:04 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-28 01:11:04 (GMT)
commiteb9957065acaafbf3d8ebee4770ecb13ea0c07c0 (patch)
treea5caf4a201daa6a5094eb18f605cb2b4b7bc91fd /Lib/test/test_math.py
parenteac67be948e972dc12b7b4abfa83b09becf6422c (diff)
downloadcpython-eb9957065acaafbf3d8ebee4770ecb13ea0c07c0.zip
cpython-eb9957065acaafbf3d8ebee4770ecb13ea0c07c0.tar.gz
cpython-eb9957065acaafbf3d8ebee4770ecb13ea0c07c0.tar.bz2
Issue #27626: Spelling fixes in docs, comments and internal names
Based on patch by Ville Skyttä.
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r--Lib/test/test_math.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index 6c7b99d..a379a6a 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -1254,8 +1254,8 @@ class IsCloseTests(unittest.TestCase):
(1.0e200, .999999999999999e200)]
self.assertAllNotClose(zero_tolerance_not_close_examples, rel_tol=0.0)
- def test_assymetry(self):
- # test the assymetry example from PEP 485
+ def test_asymmetry(self):
+ # test the asymmetry example from PEP 485
self.assertAllClose([(9, 10), (10, 9)], rel_tol=0.1)
def test_integers(self):