Commit 60b7fbd7 authored by Jason Madden's avatar Jason Madden

Work with the ssl subclass

parent 6fee2622
...@@ -198,9 +198,10 @@ class TestTCP(greentest.TestCase): ...@@ -198,9 +198,10 @@ class TestTCP(greentest.TestCase):
client = self.create_connection() client = self.create_connection()
client.settimeout(0.1) client.settimeout(0.1)
fd = client.makefile(mode='rb') fd = client.makefile(mode='rb')
self.assertRaises(socket.timeout, fd.readline) self.assertRaises(self.TIMEOUT_ERROR, fd.readline)
client.close() client.close()
fd.close() fd.close()
acceptor.join()
def test_attributes(self): def test_attributes(self):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, 0) s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, 0)
...@@ -217,6 +218,7 @@ class TestTCP(greentest.TestCase): ...@@ -217,6 +218,7 @@ class TestTCP(greentest.TestCase):
std_socket.setblocking(0) std_socket.setblocking(0)
self.assertEqual(std_socket.type, s.type) self.assertEqual(std_socket.type, s.type)
s.close()
def get_port(): def get_port():
tempsock = socket.socket() tempsock = socket.socket()
......
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