summaryrefslogtreecommitdiff
path: root/Lib/test/test_scope.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_scope.py')
-rw-r--r--Lib/test/test_scope.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_scope.py b/Lib/test/test_scope.py
index fb1e26f1f5..84ceafabd6 100644
--- a/Lib/test/test_scope.py
+++ b/Lib/test/test_scope.py
@@ -443,7 +443,7 @@ class X:
locals()['looked_up_by_load_name'] = True
passed = looked_up_by_load_name
-self.assert_(X.passed)
+self.assertTrue(X.passed)
""")
def testLocalsFunction(self):
@@ -458,7 +458,7 @@ self.assert_(X.passed)
return g
d = f(2)(4)
- self.assert_('h' in d)
+ self.assertTrue('h' in d)
del d['h']
self.assertEqual(d, {'x': 2, 'y': 7, 'w': 6})
@@ -492,8 +492,8 @@ self.assert_(X.passed)
return C
varnames = f(1).z
- self.assert_("x" not in varnames)
- self.assert_("y" in varnames)
+ self.assertTrue("x" not in varnames)
+ self.assertTrue("y" in varnames)
def testLocalsClass_WithTrace(self):
# Issue23728: after the trace function returns, the locals()
@@ -671,7 +671,7 @@ result2 = h()
c = f(0)
self.assertEqual(c.get(), 1)
- self.assert_("x" not in c.__class__.__dict__)
+ self.assertTrue("x" not in c.__class__.__dict__)
def testNonLocalGenerator(self):