From 97e11a219fb2a752d5b726b203874101d7ab651c Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 24 Feb 2013 15:36:15 +1300 Subject: Housekeeping and cleanup, some minor argument name changes. --- test/test_tcp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_tcp.py') diff --git a/test/test_tcp.py b/test/test_tcp.py index 5b616969..de14ab25 100644 --- a/test/test_tcp.py +++ b/test/test_tcp.py @@ -149,7 +149,7 @@ class TestSSLClientCert(test.ServerTestBase): def test_clientcert(self): c = tcp.TCPClient("127.0.0.1", self.port) c.connect() - c.convert_to_ssl(clientcert=tutils.test_data.path("data/clientcert/client.pem")) + c.convert_to_ssl(cert=tutils.test_data.path("data/clientcert/client.pem")) assert c.rfile.readline().strip() == "1" def test_clientcert_err(self): @@ -158,7 +158,7 @@ class TestSSLClientCert(test.ServerTestBase): tutils.raises( tcp.NetLibError, c.convert_to_ssl, - clientcert=tutils.test_data.path("data/clientcert/make") + cert=tutils.test_data.path("data/clientcert/make") ) -- cgit v1.2.3