diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-31 17:46:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-31 17:46:45 (GMT) |
commit | 887cd7d981d062d82b906b64e3c313c7b43908f2 (patch) | |
tree | 890762bbd897d32849416b2f832c2539946317ab /Lib/test/test_urllib2net.py | |
parent | d2403a21e40a884d6dcc9a17bb491ad5447c6dbe (diff) | |
parent | b25e3f9e6a1a8ea292335a23eb7dea9d8174efa1 (diff) | |
download | cpython-887cd7d981d062d82b906b64e3c313c7b43908f2.zip cpython-887cd7d981d062d82b906b64e3c313c7b43908f2.tar.gz cpython-887cd7d981d062d82b906b64e3c313c7b43908f2.tar.bz2 |
merge 3.3 (#21115)
Diffstat (limited to 'Lib/test/test_urllib2net.py')
-rw-r--r-- | Lib/test/test_urllib2net.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 3b2f2b8..fd667f2 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -157,12 +157,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_redirect_url_withfrag(self): redirect_url_with_frag = "http://bitly.com/urllibredirecttest" |