From 1ac08bf97d57cf36aca650b896ccb885339e9cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Mon, 12 Aug 2024 13:19:45 +0200 Subject: [PATCH] fixes client test --- tests/client/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/client/test_client.py b/tests/client/test_client.py index 7a66bb2..27c2cd0 100644 --- a/tests/client/test_client.py +++ b/tests/client/test_client.py @@ -45,7 +45,7 @@ def pydase_client() -> Generator[pydase.Client, None, Any]: thread = threading.Thread(target=server.run, daemon=True) thread.start() - client = pydase.Client(hostname="localhost", port=9999) + client = pydase.Client(url="ws://localhost:9999") yield client