#9424: Replace deprecated assert* methods in the Python test suite.
diff --git a/Lib/test/test_scope.py b/Lib/test/test_scope.py
index 390e39f..fbc87aa 100644
--- a/Lib/test/test_scope.py
+++ b/Lib/test/test_scope.py
@@ -510,7 +510,7 @@
                 def f(self):
                     return x
 
-            self.assertEquals(x, 12) # Used to raise UnboundLocalError
+            self.assertEqual(x, 12) # Used to raise UnboundLocalError
         finally:
             sys.settrace(None)