]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix failing test incorrectly merged in b1244046f37a
authorJason R. Coombs <jaraco@jaraco.com>
Mon, 11 Nov 2013 01:28:18 +0000 (20:28 -0500)
committerJason R. Coombs <jaraco@jaraco.com>
Mon, 11 Nov 2013 01:28:18 +0000 (20:28 -0500)
Lib/distutils/tests/test_upload.py

index c640b2ac6da99b8e8429e5945014dabd01472666..7d704cf1667f09d79caed2a08e1689fe13412245 100644 (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():