commit | 68c5de6d1cb51161bd7e7b2e52a613c4dbff1f47 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sun Jul 11 19:12:10 2010 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sun Jul 11 19:12:10 2010 +0000 |
tree | 092f31e8da006d4f191522ffc4328b073d494b8b | |
parent | b214e90e010f86b7d899cd88ada8c68fff90c870 [diff] [blame] |
assertEquals -> assertEqual
diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index a589f8d..a803363 100644 --- a/Lib/test/test_cmath.py +++ b/Lib/test/test_cmath.py
@@ -448,7 +448,7 @@ for x in real_vals: for y in real_vals: z = complex(x, y) - self.assertEquals(cmath.isfinite(z), + self.assertEqual(cmath.isfinite(z), math.isfinite(x) and math.isfinite(y)) def test_isnan(self):