Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcmcand committed Nov 13, 2024
1 parent f8edbb3 commit 8625b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests_deployment/test_jupyterhub_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def paramiko_object(jupyterhub_access_token):
def run_command(command, channel):
_in, _out, _err = channel.exec_command(command)

return _out.decode("utf-8")
return _out.read().decode("utf-8").strip()
# delimiter = uuid.uuid4().hex
# channel.send(f"echo {delimiter}start; {command}; echo {delimiter}end\n")

Expand Down

0 comments on commit 8625b42

Please sign in to comment.