diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-10-09 18:35:13 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-10-09 18:35:13 (GMT) |
commit | 762d4a4164211076abfc31407523d906aa806686 (patch) | |
tree | 84171f5a3d327d1b3c4322bf89fb002933c3eeec | |
parent | 174ce20865ee31998cbc42214b4446cad1f26c34 (diff) | |
download | cpython-762d4a4164211076abfc31407523d906aa806686.zip cpython-762d4a4164211076abfc31407523d906aa806686.tar.gz cpython-762d4a4164211076abfc31407523d906aa806686.tar.bz2 |
use a reliable host
-rw-r--r-- | Lib/test/test_socket_ssl.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index 2553869..0070175 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -41,10 +41,7 @@ class ConnectedTests(unittest.TestCase): # A service which issues a welcome banner (without need to write # anything). - # XXX ("gmail.org", 995) has been unreliable so far, from time to - # XXX time non-responsive for hours on end (& across all buildbot - # XXX slaves, so that's not just a local thing). - ADDR = "gmail.org", 995 + ADDR = "pop.gmail.com", 995 s = socket.socket() s.settimeout(30.0) |