We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86fd829 commit 05dfaf6Copy full SHA for 05dfaf6
future/tests/test_standard_library.py
@@ -330,11 +330,11 @@ def test_urllib_request_ssl_redirect(self):
330
331
def test_urllib_request_http(self):
332
"""
333
- This site (amazon.com) uses plain http (as of 2014-04-12).
+ This site (python-future.org) uses plain http (as of 2014-09-23).
334
335
import future.moves.urllib.request as urllib_request
336
from pprint import pprint
337
- URL = 'http://amazon.com'
+ URL = 'http://python-future.org'
338
r = urllib_request.urlopen(URL)
339
data = r.read()
340
self.assertTrue(b'<html>' in data)
0 commit comments