summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_math.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
commit8bde9111157e0eb994159c1506b1cec86298f810 (patch)
tree27d5ea90712d9eee3e678804ef581bac50ff9ba2 /Lib/test/test_math.py
parent4b53359090b7b3cfad128e40083f563f7c1900e4 (diff)
parenteb9957065acaafbf3d8ebee4770ecb13ea0c07c0 (diff)
downloadcpython-8bde9111157e0eb994159c1506b1cec86298f810.zip
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.gz
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.bz2
Issue #27626: Merge spelling fixes from 3.5
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 d0bc790..605adb5 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -1253,8 +1253,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):