diff options
author | Anselm Kruis <anselm.kruis@atos.net> | 2018-10-06 16:09:33 +0200 |
---|---|---|
committer | Anselm Kruis <anselm.kruis@atos.net> | 2018-10-06 16:09:33 +0200 |
commit | 1694e6e46032c63ab9e1015adedda0cf1cc14912 (patch) | |
tree | 62daf8a47ea155c4b587e6e6409d6efbb388c308 /tests/test_kex_gss.py | |
parent | a8e8f9aa89c2c1fe65e4477d8d553eb5e669c927 (diff) |
fix GSSAPI tests for Python3 (trivial)
Diffstat (limited to 'tests/test_kex_gss.py')
-rw-r--r-- | tests/test_kex_gss.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_kex_gss.py b/tests/test_kex_gss.py index e58be65d..7e53795f 100644 --- a/tests/test_kex_gss.py +++ b/tests/test_kex_gss.py @@ -53,7 +53,7 @@ class NullServer(paramiko.ServerInterface): return paramiko.OPEN_SUCCEEDED def check_channel_exec_request(self, channel, command): - if command != "yes": + if command != b"yes": return False return True |