Commit 68c5de6d authored by Mark Dickinson's avatar Mark Dickinson

assertEquals -> assertEqual

parent b214e90e
...@@ -448,7 +448,7 @@ class CMathTests(unittest.TestCase): ...@@ -448,7 +448,7 @@ class CMathTests(unittest.TestCase):
for x in real_vals: for x in real_vals:
for y in real_vals: for y in real_vals:
z = complex(x, y) z = complex(x, y)
self.assertEquals(cmath.isfinite(z), self.assertEqual(cmath.isfinite(z),
math.isfinite(x) and math.isfinite(y)) math.isfinite(x) and math.isfinite(y))
def test_isnan(self): def test_isnan(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment