[pypy-commit] pypy default: try another ip to test timeout

bdkearns noreply at buildbot.pypy.org
Thu Apr 24 00:37:07 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r70897:1b90f8057ef4
Date: 2014-04-23 18:36 -0400
http://bitbucket.org/pypy/pypy/changeset/1b90f8057ef4/

Log:	try another ip to test timeout

diff --git a/rpython/rlib/test/test_rsocket.py b/rpython/rlib/test/test_rsocket.py
--- a/rpython/rlib/test/test_rsocket.py
+++ b/rpython/rlib/test/test_rsocket.py
@@ -341,7 +341,7 @@
     s = RSocket()
     s.settimeout(0.1)
     with py.test.raises(SocketTimeout):
-        s.connect(INETAddress('10.255.255.10', 12345))
+        s.connect(INETAddress('172.30.172.30', 12345))
     s.close()
 
 def test_connect_with_timeout_succeed():


More information about the pypy-commit mailing list