[Python-checkins] cpython: Fix failing test incorrectly merged in b1244046f37a

jason.coombs python-checkins at python.org
Mon Nov 11 02:30:31 CET 2013


http://hg.python.org/cpython/rev/394ed9deebd4
changeset:   87046:394ed9deebd4
user:        Jason R. Coombs <jaraco at jaraco.com>
date:        Sun Nov 10 20:28:18 2013 -0500
summary:
  Fix failing test incorrectly merged in b1244046f37a

files:
  Lib/distutils/tests/test_upload.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/distutils/tests/test_upload.py b/Lib/distutils/tests/test_upload.py
--- a/Lib/distutils/tests/test_upload.py
+++ b/Lib/distutils/tests/test_upload.py
@@ -117,7 +117,7 @@
         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():

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list