convert old fail* assertions to assert*

This commit is contained in:
Benjamin Peterson 2009-06-30 23:06:06 +00:00
parent 98d23f2e06
commit c9c0f201fe
275 changed files with 4540 additions and 4540 deletions

View file

@ -83,13 +83,13 @@ class AutoFileTests(unittest.TestCase):
def testErrors(self):
f = self.f
self.assertEquals(f.name, TESTFN)
self.assert_(not f.isatty())
self.assert_(not f.closed)
self.assertTrue(not f.isatty())
self.assertTrue(not f.closed)
if hasattr(f, "readinto"):
self.assertRaises((IOError, TypeError), f.readinto, "")
f.close()
self.assert_(f.closed)
self.assertTrue(f.closed)
def testMethods(self):
methods = [('fileno', ()),
@ -111,7 +111,7 @@ class AutoFileTests(unittest.TestCase):
# __exit__ should close the file
self.f.__exit__(None, None, None)
self.assert_(self.f.closed)
self.assertTrue(self.f.closed)
for methodname, args in methods:
method = getattr(self.f, methodname)