summaryrefslogtreecommitdiff
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>2017-10-23 18:10:24 -0700
commit861b57fcb8f1cf045c2a6d2c40f7227aed6f4f95 (patch)
tree9019d3948b078075fcd71a3b5508ce0d7c73c966 /tests/test_kex_gss.py
parenteb6e647a79e16db85ebde638678591f525989e8e (diff)
downloadparamiko-861b57fcb8f1cf045c2a6d2c40f7227aed6f4f95.tar.gz
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 af342a7c..025d1faa 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):