Remove an assert which snuck in during merging from py3k.

This commit is contained in:
Brian Curtin 2010-11-02 13:46:08 +00:00
parent 2e4d4c414e
commit 3f30c45d05
1 changed files with 0 additions and 1 deletions

View File

@ -716,7 +716,6 @@ class BasicTCPTest(SocketConnectedTest):
fd = self.cli_conn.fileno()
sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
self.addCleanup(sock.close)
self.assertIsInstance(sock, socket.socket)
msg = sock.recv(1024)
self.assertEqual(msg, MSG)