diff options
Diffstat (limited to 'Lib/test/test_pep3131.py')
-rw-r--r-- | Lib/test/test_pep3131.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_pep3131.py b/Lib/test/test_pep3131.py index fba1297..9d5f217 100644 --- a/Lib/test/test_pep3131.py +++ b/Lib/test/test_pep3131.py @@ -8,15 +8,15 @@ class PEP3131Test(unittest.TestCase): ä = 1 µ = 2 # this is a compatibility character 蟒 = 3 - self.assertEquals(getattr(T, "\xe4"), 1) - self.assertEquals(getattr(T, "\u03bc"), 2) - self.assertEquals(getattr(T, '\u87d2'), 3) + self.assertEqual(getattr(T, "\xe4"), 1) + self.assertEqual(getattr(T, "\u03bc"), 2) + self.assertEqual(getattr(T, '\u87d2'), 3) def test_invalid(self): try: from test import badsyntax_3131 except SyntaxError as s: - self.assertEquals(str(s), + self.assertEqual(str(s), "invalid character in identifier (badsyntax_3131.py, line 2)") else: self.fail("expected exception didn't occur") |