mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
convert old fail* assertions to assert*
This commit is contained in:
parent
98d23f2e06
commit
c9c0f201fe
275 changed files with 4540 additions and 4540 deletions
|
@ -24,7 +24,7 @@ class CAPITest(unittest.TestCase):
|
|||
def test_instancemethod(self):
|
||||
inst = InstanceMethod()
|
||||
self.assertEqual(id(inst), inst.id())
|
||||
self.assert_(inst.testfunction() is inst)
|
||||
self.assertTrue(inst.testfunction() is inst)
|
||||
self.assertEqual(inst.testfunction.__doc__, testfunction.__doc__)
|
||||
self.assertEqual(InstanceMethod.testfunction.__doc__, testfunction.__doc__)
|
||||
|
||||
|
@ -64,7 +64,7 @@ class TestPendingCalls(unittest.TestCase):
|
|||
if context and not context.event.is_set():
|
||||
continue
|
||||
count += 1
|
||||
self.failUnless(count < 10000,
|
||||
self.assertTrue(count < 10000,
|
||||
"timeout waiting for %i callbacks, got %i"%(n, len(l)))
|
||||
if False and support.verbose:
|
||||
print("(%i)"%(len(l),))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue