aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/test.py')
-rw-r--r--netlib/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/test.py b/netlib/test.py
index 85a56739..f5599082 100644
--- a/netlib/test.py
+++ b/netlib/test.py
@@ -50,8 +50,8 @@ class TServer(tcp.TCPServer):
self.handler_klass = handler_klass
self.last_handler = None
- def handle_connection(self, request, client_address):
- h = self.handler_klass(request, client_address, self)
+ def handle_client_connection(self, request, client_address):
+ h = self.handler_klass(request)
self.last_handler = h
if self.ssl:
cert = certutils.SSLCert.from_pem(