summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-03-27 08:40:16 (GMT)
committerNed Deily <nad@acm.org>2014-03-27 08:40:16 (GMT)
commitd43bf79b5e62d0f5c60145e34876ff34ab6a6665 (patch)
tree0f0548297d41387a4aad0bf94948a5c03d4006ff /Lib
parentf6c4fe8c740d21908335e064f73eb0b6c71adbeb (diff)
parent223082fc691024fe2d0fe44322d042a474eb345d (diff)
downloadcpython-d43bf79b5e62d0f5c60145e34876ff34ab6a6665.zip
cpython-d43bf79b5e62d0f5c60145e34876ff34ab6a6665.tar.gz
cpython-d43bf79b5e62d0f5c60145e34876ff34ab6a6665.tar.bz2
Issue 21069: merge from 3.4
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_urllibnet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py
index 8578695..b66202c 100644
--- a/Lib/test/test_urllibnet.py
+++ b/Lib/test/test_urllibnet.py
@@ -101,7 +101,7 @@ class urlopenNetworkTests(unittest.TestCase):
@unittest.skipIf(sys.platform in ('win32',), 'not appropriate for Windows')
def test_fileno(self):
# Make sure fd returned by fileno is valid.
- with self.urlopen("http://www.example.com/", timeout=None) as open_url:
+ with self.urlopen("http://www.google.com/", timeout=None) as open_url:
fd = open_url.fileno()
with os.fdopen(fd, 'rb') as f:
self.assertTrue(f.read(), "reading from file created using fd "