mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#9424: Replace deprecated assert* methods in the Python test suite.
This commit is contained in:
parent
b8bc439b20
commit
b3aedd4862
170 changed files with 2388 additions and 2392 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue