@@ -102,8 +102,8 @@ def setUp(self):
|
102 | 102 | |
103 | 103 | def test_ftp(self): |
104 | 104 | urls = [ |
105 | | -'ftp://ftp.debian.org/debian/README', |
106 | | - ('ftp://ftp.debian.org/debian/non-existent-file', |
| 105 | +'ftp://www.pythontest.net/README', |
| 106 | + ('ftp://www.pythontest.net/non-existent-file', |
107 | 107 | None, urllib2.URLError), |
108 | 108 | ] |
109 | 109 | self._test_urls(urls, self._extra_handlers()) |
@@ -282,7 +282,7 @@ def test_http_timeout(self):
|
282 | 282 | u = _urlopen_with_retry(url, timeout=120) |
283 | 283 | self.assertEqual(u.fp._sock.fp._sock.gettimeout(), 120) |
284 | 284 | |
285 | | -FTP_HOST = 'ftp://ftp.debian.org/debian/' |
| 285 | +FTP_HOST = 'ftp://www.pythontest.net/' |
286 | 286 | |
287 | 287 | def test_ftp_basic(self): |
288 | 288 | self.assertIsNone(socket.getdefaulttimeout()) |
|