Fix failing test incorrectly merged in b1244046f37a

This commit is contained in:
Jason R. Coombs 2013-11-10 20:28:18 -05:00
parent 0048ae0cc6
commit 77796e4f7a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
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(),
'http://pypi.python.org/pypi')
'https://pypi.python.org/pypi')
self.assert_(b'xxx' in self.last_open.req.data)
def test_suite():