summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-09-17 19:18:13 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-09-17 19:18:13 -0700
commit9b9e2bcbc185b5b4557cf7fe5efe22626deee610 (patch)
tree815fbb0fd9f5dba7308cd146a6c289cc9b39e72d /tests/test_client.py
parent30d49449e38cb10a254983605d576d48a76a387b (diff)
s/test_path/_support/g
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py4
1 files changed, 2 insertions, 2 deletions
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(