#9424: Replace deprecated assert* methods in the Python test suite.
diff --git a/Lib/test/test_int.py b/Lib/test/test_int.py
index 0ea5772..86c4dd7 100644
--- a/Lib/test/test_int.py
+++ b/Lib/test/test_int.py
@@ -295,7 +295,7 @@
                 try:
                     int(TruncReturnsNonIntegral())
                 except TypeError as e:
-                    self.assertEquals(str(e),
+                    self.assertEqual(str(e),
                                       "__trunc__ returned non-Integral"
                                       " (type NonIntegral)")
                 else: