diff options
author | Ned Deily <nad@acm.org> | 2014-03-27 08:39:28 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-03-27 08:39:28 (GMT) |
commit | 223082fc691024fe2d0fe44322d042a474eb345d (patch) | |
tree | fa9c5ae8833180d1ee73e9916f52f1accb781421 /Lib/test/test_urllibnet.py | |
parent | 944d597faa55de4cfeb63f41f8a6ef1a21b205e2 (diff) | |
download | cpython-223082fc691024fe2d0fe44322d042a474eb345d.zip cpython-223082fc691024fe2d0fe44322d042a474eb345d.tar.gz cpython-223082fc691024fe2d0fe44322d042a474eb345d.tar.bz2 |
Issue #21069: Temporarily use www.google.com while investigating
test_urllibnet.test_fileno intermittent failures with www.example.com.
Diffstat (limited to 'Lib/test/test_urllibnet.py')
-rw-r--r-- | Lib/test/test_urllibnet.py | 2 |
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 " |