summaryrefslogtreecommitdiffhomepage
path: root/tests/test_kex_gss.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-23 18:10:24 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-09-17 14:44:50 -0700
commit3bba19c952d60272c037ad4ac7e1559f748eafe8 (patch)
tree5569bc22ba5e9bfbb35a17d021985a612bd6147c /tests/test_kex_gss.py
parente282595411fe16dd570446d7217ef381188aa485 (diff)
Was missing another needs_gssapi
Diffstat (limited to 'tests/test_kex_gss.py')
-rw-r--r--tests/test_kex_gss.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_kex_gss.py b/tests/test_kex_gss.py
index 3bf788da..0bd9054b 100644
--- a/tests/test_kex_gss.py
+++ b/tests/test_kex_gss.py
@@ -31,6 +31,8 @@ import unittest
import paramiko
+from .util import needs_gssapi
+
class NullServer (paramiko.ServerInterface):
@@ -57,6 +59,7 @@ class NullServer (paramiko.ServerInterface):
return True
+@needs_gssapi
class GSSKexTest(unittest.TestCase):
@staticmethod
def init(username, hostname):