Skip to content

Commit

Permalink
fix test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
haliphax committed Feb 28, 2023
1 parent 96fa05c commit 6565b48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ssh/test_start_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# target
from xthulu.ssh import start_server
from xthulu.ssh.server import SSHServer
from xthulu.ssh.process_factory import handle_client

# local
from tests import run_coroutine
Expand Down Expand Up @@ -55,7 +56,7 @@ def test_server_args(self):
"port": int(ssh_config["port"]),
"server_factory": SSHServer,
"server_host_keys": ssh_config["host_keys"],
"process_factory": SSHServer.handle_client,
"process_factory": handle_client,
"encoding": None,
}
)
Expand Down

0 comments on commit 6565b48

Please sign in to comment.