summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-05 18:10:08 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-11-05 18:10:08 (GMT)
commitb811a978597e02a9852030ee7fac49aece40512f (patch)
treea1b0fa8890199d6c65be9c95f6fda9e7396b955d
parent1d83002748e9e82841e8cd2054c5780d76a0ee69 (diff)
downloadcpython-b811a978597e02a9852030ee7fac49aece40512f.zip
cpython-b811a978597e02a9852030ee7fac49aece40512f.tar.gz
cpython-b811a978597e02a9852030ee7fac49aece40512f.tar.bz2
use pythontest.net for fragment redirection test
-rw-r--r--Lib/test/test_urllib2net.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py
index 2b65e8f..fc21408 100644
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -8,13 +8,6 @@ import urllib.error
import urllib.request
import sys
-try:
- import ssl
-except ImportError:
- ssl = None
-
-requires_ssl = unittest.skipIf(ssl is None, "SSL not supported")
-
support.requires("network")
TIMEOUT = 60 # seconds
@@ -167,14 +160,13 @@ class OtherNetworkTests(unittest.TestCase):
self.assertEqual(res.geturl(),
"http://www.pythontest.net/index.html#frag")
- @requires_ssl
def test_redirect_url_withfrag(self):
- redirect_url_with_frag = "http://bit.ly/1iSHToT"
+ redirect_url_with_frag = "http://www.pythontest.net/redir/with_frag/"
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(),
- "https://docs.python.org/3.4/glossary.html#term-global-interpreter-lock")
+ "http://www.pythontest.net/elsewhere/#frag")
def test_custom_headers(self):
url = "http://www.example.com"