From: Mark Dickinson Date: Sun, 11 Jul 2010 19:12:10 +0000 (+0000) Subject: assertEquals -> assertEqual X-Git-Tag: v3.2a1~218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=68c5de6d1cb51161bd7e7b2e52a613c4dbff1f47;p=thirdparty%2FPython%2Fcpython.git assertEquals -> assertEqual --- diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index a589f8db7eae..a8033635ecd7 100644 --- a/Lib/test/test_cmath.py +++ b/Lib/test/test_cmath.py @@ -448,7 +448,7 @@ class CMathTests(unittest.TestCase): 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):