#9424: Replace deprecated assert* methods in the Python test suite.

This commit is contained in:
Ezio Melotti 2010-11-20 19:04:17 +00:00
parent b8bc439b20
commit b3aedd4862
170 changed files with 2388 additions and 2392 deletions

View file

@ -113,7 +113,7 @@ class TestGzip(unittest.TestCase):
ztxt = zgfile.read(8192)
contents += ztxt
if not ztxt: break
self.assertEquals(contents, b'a'*201)
self.assertEqual(contents, b'a'*201)
def test_buffered_reader(self):
# Issue #7471: a GzipFile can be wrapped in a BufferedReader for
@ -177,7 +177,7 @@ class TestGzip(unittest.TestCase):
f.read(10)
f.seek(10, whence=1)
y = f.read(10)
self.assertEquals(y, data1[20:30])
self.assertEqual(y, data1[20:30])
def test_seek_write(self):
# Try seek, write test