Commit 51f128b9 authored by Denis Bilenko's avatar Denis Bilenko

test__socket.py: remove reference to SSLObject which was removed

parent 114e5e16
......@@ -45,11 +45,6 @@ class TestTCP(greentest.TestCase):
assert result == 'hello world', result
sender.join(0.2)
sender.kill(block=True)
if client.__class__.__name__ == 'SSLObject':
# 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
# the preferred way to do ssl now is via gevent.ssl which works OK without explicit close
client.close()
#print '%s: client' % getcurrent()
......
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