From 1694e6e46032c63ab9e1015adedda0cf1cc14912 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Sat, 6 Oct 2018 16:09:33 +0200 Subject: fix GSSAPI tests for Python3 (trivial) --- tests/test_kex_gss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_kex_gss.py') 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 -- cgit v1.2.1