summaryrefslogtreecommitdiff
path: root/tests/test_ssh_gss.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-23 10:32:07 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-10-23 10:32:07 -0700
commitb9ff5f3e4b11a7b8928e51629df0bfde4c6ebe53 (patch)
treec62e4c408f496f042e8b116ce4631ec80dabf77b /tests/test_ssh_gss.py
parent9621e914bc433f8deb72c17fedb7b73365cbac21 (diff)
downloadparamiko-b9ff5f3e4b11a7b8928e51629df0bfde4c6ebe53.tar.gz
Rename util func that trips pytest's default discovery.
Wouldn't matter as much under pytest-relaxed discovery, but, eh
Diffstat (limited to 'tests/test_ssh_gss.py')
-rw-r--r--tests/test_ssh_gss.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ssh_gss.py b/tests/test_ssh_gss.py
index d8d05d2b..081d942b 100644
--- a/tests/test_ssh_gss.py
+++ b/tests/test_ssh_gss.py
@@ -29,7 +29,7 @@ import unittest
import paramiko
-from tests.util import test_path
+from tests.util import _support
from tests.test_client import FINGERPRINTS
class NullServer (paramiko.ServerInterface):
@@ -148,6 +148,6 @@ class GSSAuthTest(unittest.TestCase):
Failed gssapi-with-mic auth doesn't prevent subsequent key auth from succeeding
"""
self.hostname = "this_host_does_not_exists_and_causes_a_GSSAPI-exception"
- self._test_connection(key_filename=[test_path('test_rsa.key')],
+ self._test_connection(key_filename=[_support('test_rsa.key')],
allow_agent=False,
look_for_keys=False)