use https docs url (#21115)

This commit is contained in:
Benjamin Peterson 2014-03-31 13:44:53 -04:00
parent 8aef28a5d0
commit b4be376d16
1 changed files with 2 additions and 2 deletions

View File

@ -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"