From 74b5c6965f6a9f1ed5515745fb9d1985b62875f9 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Fri, 25 Oct 2024 19:35:55 -0700 Subject: [PATCH] Remove verbose command for websocat --- tests/test_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ssh.py b/tests/test_ssh.py index 5f4b76f..501cddc 100644 --- a/tests/test_ssh.py +++ b/tests/test_ssh.py @@ -49,7 +49,7 @@ def jupyter_server(random_port): def get_ssh_client_options(random_port, token, authorized_keys_path): return [ - f'ProxyCommand=websocat -v --binary -H="Authorization: token {token}" asyncstdio: ws://%h:{random_port}/sshd/', + f'ProxyCommand=websocat --binary -H="Authorization: token {token}" asyncstdio: ws://%h:{random_port}/sshd/', f'User={getpass.getuser()}', f'IdentityFile={authorized_keys_path}', 'StrictHostKeyChecking=no' # FIXME: Validate this correctly later