Commit 953ebfad authored by Jason Madden's avatar Jason Madden

Fix test__socket_ex.

parent 417c73a9
...@@ -10,7 +10,7 @@ class TestClosedSocket(greentest.TestCase): ...@@ -10,7 +10,7 @@ class TestClosedSocket(greentest.TestCase):
sock = socket.socket() sock = socket.socket()
sock.close() sock.close()
try: try:
sock.send('a', timeout=1) sock.send(b'a', timeout=1)
except socket.error as ex: except socket.error as ex:
if ex.args[0] != 9: if ex.args[0] != 9:
raise raise
......
...@@ -91,7 +91,6 @@ test__refcount.py ...@@ -91,7 +91,6 @@ test__refcount.py
test__subprocess.py test__subprocess.py
test__all__.py test__all__.py
test__pywsgi.py test__pywsgi.py
test__socket_ex.py
test__example_echoserver.py test__example_echoserver.py
test__makefile_ref.py test__makefile_ref.py
test__server_pywsgi.py test__server_pywsgi.py
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment