summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-10 20:28:18 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-11-10 20:28:18 -0500
commitb5e1e144277c1b90052d1e29451877e599b00fbd (patch)
tree6b9e3c36a0602d7240054d533d86c5177b15ded8
parentff728e9402fe551b0b048249d2ac3b41b1e02109 (diff)
downloadpython-setuptools-git-b5e1e144277c1b90052d1e29451877e599b00fbd.tar.gz
Fix failing test incorrectly merged in b1244046f37a
-rw-r--r--tests/test_upload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_upload.py b/tests/test_upload.py
index c640b2ac..7d704cf1 100644
--- a/tests/test_upload.py
+++ b/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():