summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-05 16:30:00 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-11-05 16:30:00 (GMT)
commit67a98778669ebaf77a6d4b98775daa98ad2fac3b (patch)
tree93277455b33cbe39e2b094884364e641c848d5c6 /Lib/test
parent004adb91f6e05ac711b0554bbd0415a48fed623c (diff)
parente71abcc7bb0ab2d11af25d6a65db73701b58a91c (diff)
downloadcpython-67a98778669ebaf77a6d4b98775daa98ad2fac3b.zip
cpython-67a98778669ebaf77a6d4b98775daa98ad2fac3b.tar.gz
cpython-67a98778669ebaf77a6d4b98775daa98ad2fac3b.tar.bz2
merge 3.3
Diffstat (limited to 'Lib/test')
-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 6f78cea..f39cec8 100644
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -161,12 +161,12 @@ class OtherNetworkTests(unittest.TestCase):
@requires_ssl
def test_urlwithfrag(self):
- urlwith_frag = "https://docs.python.org/2/glossary.html#glossary"
+ urlwith_frag = "http://www.pythontest.net/index.html#frag"
with support.transient_internet(urlwith_frag):
req = urllib.request.Request(urlwith_frag)
res = urllib.request.urlopen(req)
self.assertEqual(res.geturl(),
- "https://docs.python.org/2/glossary.html#glossary")
+ "http://www.pythontest.net/index.html#frag")
@requires_ssl
def test_redirect_url_withfrag(self):