Commit b370aef7 authored by Denis Bilenko's avatar Denis Bilenko

test__socket.py: do not pass block=True to kill because it's the default

parent 579bac28
...@@ -44,7 +44,7 @@ class TestTCP(greentest.TestCase): ...@@ -44,7 +44,7 @@ class TestTCP(greentest.TestCase):
result = client.recv(1000) result = client.recv(1000)
assert result == 'hello world', result assert result == 'hello world', result
sender.join(0.2) sender.join(0.2)
sender.kill(block=True) sender.kill()
if client.__class__.__name__ == 'SSLObject': if client.__class__.__name__ == 'SSLObject':
# if sslold.SSLObject is not closed then the other end will receive sslerror: (8, 'Unexpected EOF') # if sslold.SSLObject is not closed then the other end will receive sslerror: (8, 'Unexpected EOF')
# Not sure if it must be fixed but I don't want to waste time on that since # Not sure if it must be fixed but I don't want to waste time on that since
......
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