summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-31 13:44:53 -0400
committerBenjamin Peterson <benjamin@python.org>2014-03-31 13:44:53 -0400
commitb4be376d16cba52c91afc5a9dc8ff36ae96e26d9 (patch)
tree40edea173b18dc85032e25b5435843f1db2c421b
parent8aef28a5d03cee6da9c41885b40d36d7e1a9be79 (diff)
downloadcpython-git-b4be376d16cba52c91afc5a9dc8ff36ae96e26d9.tar.gz
use https docs url (#21115)
-rw-r--r--Lib/test/test_urllib2net.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py
index e2b1d95c04..feeaf24e8a 100644
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -156,12 +156,12 @@ class OtherNetworkTests(unittest.TestCase):
## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
def test_urlwithfrag(self):
- urlwith_frag = "http://docs.python.org/2/glossary.html#glossary"
+ urlwith_frag = "https://docs.python.org/2/glossary.html#glossary"
with support.transient_internet(urlwith_frag):
req = urllib.request.Request(urlwith_frag)
res = urllib.request.urlopen(req)
self.assertEqual(res.geturl(),
- "http://docs.python.org/2/glossary.html#glossary")
+ "https://docs.python.org/2/glossary.html#glossary")
def test_custom_headers(self):
url = "http://www.example.com"