diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-11 01:28:18 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-11 01:28:18 (GMT) |
commit | 77796e4f7ad300af9b8db30f958694e12b7b09ce (patch) | |
tree | c22b8cb0de02d7a4b35cfa0bf81b24c8bd6c8cc3 /Lib/distutils/tests | |
parent | 0048ae0cc62cba45b197976031f0680d90687ffc (diff) | |
download | cpython-77796e4f7ad300af9b8db30f958694e12b7b09ce.zip cpython-77796e4f7ad300af9b8db30f958694e12b7b09ce.tar.gz cpython-77796e4f7ad300af9b8db30f958694e12b7b09ce.tar.bz2 |
Fix failing test incorrectly merged in b1244046f37a
Diffstat (limited to 'Lib/distutils/tests')
-rw-r--r-- | 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 index c640b2a..7d704cf 100644 --- a/Lib/distutils/tests/test_upload.py +++ b/Lib/distutils/tests/test_upload.py @@ -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(): |