From a4421785844c860a79875830ad130394ed4ac318 Mon Sep 17 00:00:00 2001 From: Matthias Veit Date: Mon, 4 Mar 2024 13:23:52 +0100 Subject: [PATCH] host address? --- tests/fixclient_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fixclient_test.py b/tests/fixclient_test.py index 7253e6f..72a9c12 100644 --- a/tests/fixclient_test.py +++ b/tests/fixclient_test.py @@ -38,7 +38,7 @@ async def core_client(foo_kinds: List[rc.Kind]) -> AsyncIterator[FixInventoryCli async def core_ready() -> bool: async with ClientSession() as session: - async with session.get("https://localhost:8900/system/ready", ssl=False) as resp: + async with session.get("https://fixcore:8900/system/ready", ssl=False) as resp: return resp.status == 200 # test_db.collection("model").truncate() @@ -58,7 +58,7 @@ async def core_ready() -> bool: raise AssertionError("Fixcore does not came up as expected") # wipe and cleanly import the test model - client = FixInventoryClient("https://localhost:8900", psk="changeme") + client = FixInventoryClient("https://fixcore:8900", psk="changeme") # chech that connection is possible list(client.cli_execute("system info"))