mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Update more usage of assertEqual
This commit is contained in:
parent
e9f0311a0f
commit
6f87a08aa7
3 changed files with 8 additions and 8 deletions
|
@ -329,8 +329,8 @@ class ArchiveUtilTestCase(support.TempdirManager,
|
|||
archive = tarfile.open(archive_name)
|
||||
try:
|
||||
for member in archive.getmembers():
|
||||
self.assertEquals(member.uid, 0)
|
||||
self.assertEquals(member.gid, 0)
|
||||
self.assertEqual(member.uid, 0)
|
||||
self.assertEqual(member.gid, 0)
|
||||
finally:
|
||||
archive.close()
|
||||
|
||||
|
|
|
@ -115,9 +115,9 @@ class uploadTestCase(PyPIRCCommandTestCase):
|
|||
headers = dict(self.last_open.req.headers)
|
||||
self.assertEqual(headers['Content-length'], '2087')
|
||||
self.assert_(headers['Content-type'].startswith('multipart/form-data'))
|
||||
self.assertEquals(self.last_open.req.get_method(), 'POST')
|
||||
self.assertEquals(self.last_open.req.get_full_url(),
|
||||
'https://pypi.python.org/pypi')
|
||||
self.assertEqual(self.last_open.req.get_method(), 'POST')
|
||||
expected_url = 'https://pypi.python.org/pypi'
|
||||
self.assertEqual(self.last_open.req.get_full_url(), expected_url)
|
||||
self.assert_(b'xxx' in self.last_open.req.data)
|
||||
|
||||
def test_suite():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue