diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-23 18:10:24 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-23 18:10:24 -0700 |
commit | 861b57fcb8f1cf045c2a6d2c40f7227aed6f4f95 (patch) | |
tree | 9019d3948b078075fcd71a3b5508ce0d7c73c966 /tests | |
parent | eb6e647a79e16db85ebde638678591f525989e8e (diff) |
Was missing another needs_gssapi
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_kex_gss.py | 3 |
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): |