diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 04:37:34 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 04:37:34 (GMT) |
commit | 8749316c08cc03615dde15885000207f1279fd0c (patch) | |
tree | 999f67bb5a5b20ca359d5e305f7277c5fad289f7 | |
parent | ae1d0c978dbf8327f1193ab2f36323393efd5eb6 (diff) | |
download | cpython-8749316c08cc03615dde15885000207f1279fd0c.zip cpython-8749316c08cc03615dde15885000207f1279fd0c.tar.gz cpython-8749316c08cc03615dde15885000207f1279fd0c.tar.bz2 |
Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot)
-rw-r--r-- | Lib/test/test_timeout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py index cb19d9e..444934b 100644 --- a/Lib/test/test_timeout.py +++ b/Lib/test/test_timeout.py @@ -114,7 +114,7 @@ class TimeoutTestCase(unittest.TestCase): # If we are too close to www.python.org, this test will fail. # Pick a host that should be farther away. if socket.getfqdn().split('.')[-2:] == ['python', 'org']: - self.addr_remote = ('python.net', 80) + self.addr_remote = ('tut.fi', 80) _t1 = time.time() self.failUnlessRaises(socket.error, self.sock.connect, |