fixes client test

This commit is contained in:
Mose Müller 2024-08-12 13:19:45 +02:00
parent 42357d7901
commit 1ac08bf97d

View File

@ -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