aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/test.py')
-rw-r--r--netlib/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/test.py b/netlib/test.py
index cd1a3847..0c36da6a 100644
--- a/netlib/test.py
+++ b/netlib/test.py
@@ -50,7 +50,7 @@ class TServer(tcp.TCPServer):
self.handler_klass = handler_klass
self.last_handler = None
- def handle_connection(self, request, client_address):
+ def handle_client_connection(self, request, client_address):
h = self.handler_klass(request, client_address, self)
self.last_handler = h
if self.ssl: