There were two instances left the last time.
def handle_session(self, fileno):
"""
- Handle incoming event on the socket with given fileno.
+ Handle incoming session on the socket with given fileno.
"""
logger.debug(TRACE_BASIC, DDNS_SESSION, fileno)
(socket, receiver) = self._socksession_receivers[fileno]
self.assertTrue(isinstance(receiver, FakeSessionReceiver))
self.assertEqual(socket, receiver.socket())
- def test_incoming_called(self):
+ def test_session_called(self):
"""
Test the run calls handle_session when there's something on the
socket.