From 9b9e2bcbc185b5b4557cf7fe5efe22626deee610 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 17 Sep 2018 19:18:13 -0700 Subject: s/test_path/_support/g --- tests/test_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_client.py') diff --git a/tests/test_client.py b/tests/test_client.py index 3d00aefb..48af2a57 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -272,7 +272,7 @@ class SSHClientTest(unittest.TestCase): # NOTE: only bothered whipping up one cert per overall class/family. for type_ in ('rsa', 'dss', 'ecdsa_256', 'ed25519'): cert_name = 'test_{0}.key-cert.pub'.format(type_) - cert_path = test_path(os.path.join('cert_support', cert_name)) + cert_path = _support(os.path.join('cert_support', cert_name)) self._test_connection( key_filename=cert_path, public_blob=PublicBlob.from_file(cert_path), @@ -287,7 +287,7 @@ class SSHClientTest(unittest.TestCase): # succeeding proving that the overall flow works. for type_ in ('rsa', 'dss', 'ecdsa_256', 'ed25519'): key_name = 'test_{0}.key'.format(type_) - key_path = test_path(os.path.join('cert_support', key_name)) + key_path = _support(os.path.join('cert_support', key_name)) self._test_connection( key_filename=key_path, public_blob=PublicBlob.from_file( -- cgit v1.2.3