diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-31 17:50:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-31 17:50:45 (GMT) |
commit | 934a2957ba1b56eb363933a26e2b26fa160130fe (patch) | |
tree | 05cc0c9c7c8047d4f27171a14a5047f18ebbfe90 | |
parent | 1b90f8e0e9b02c51a0d7b4ee19bf7d9d696975bc (diff) | |
parent | 809ee902c438c2b4666e990ebe1cfd9c75a2f10d (diff) | |
download | cpython-934a2957ba1b56eb363933a26e2b26fa160130fe.zip cpython-934a2957ba1b56eb363933a26e2b26fa160130fe.tar.gz cpython-934a2957ba1b56eb363933a26e2b26fa160130fe.tar.bz2 |
merge 3.4 (#21115)
-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 fd667f2..d80e39a 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -165,12 +165,12 @@ class OtherNetworkTests(unittest.TestCase): "https://docs.python.org/2/glossary.html#glossary") def test_redirect_url_withfrag(self): - redirect_url_with_frag = "http://bitly.com/urllibredirecttest" + redirect_url_with_frag = "http://bit.ly/1iSHToT" with support.transient_internet(redirect_url_with_frag): req = urllib.request.Request(redirect_url_with_frag) res = urllib.request.urlopen(req) self.assertEqual(res.geturl(), - "http://docs.python.org/3.4/glossary.html#term-global-interpreter-lock") + "https://docs.python.org/3.4/glossary.html#term-global-interpreter-lock") def test_custom_headers(self): url = "http://www.example.com" |