summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 19:43:24 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 19:43:24 -0700
commite68063498aff6691d6b379ab014fe954d821b237 (patch)
tree499b779efb38bbf42e7c9d7d33557a06938898d7 /tests
parent74d83f2c74738971ea103e7524dd57316b15046c (diff)
parent1af8db2331ec9d5f729ff62d8af87b9d8c1c7fb8 (diff)
Merge branch 'master' into switch-to-cryptography
Diffstat (limited to 'tests')
-rw-r--r--tests/test_kex_gss.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_kex_gss.py b/tests/test_kex_gss.py
index b5e277b3..8769d09c 100644
--- a/tests/test_kex_gss.py
+++ b/tests/test_kex_gss.py
@@ -84,7 +84,7 @@ class GSSKexTest(unittest.TestCase):
def _run(self):
self.socks, addr = self.sockl.accept()
- self.ts = paramiko.Transport(self.socks, True)
+ self.ts = paramiko.Transport(self.socks, gss_kex=True)
host_key = paramiko.RSAKey.from_private_key_file('tests/test_rsa.key')
self.ts.add_server_key(host_key)
self.ts.set_gss_host(targ_name)