Skip to content

Commit

Permalink
host address?
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias committed Mar 4, 2024
1 parent 5073ab0 commit a442178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fixclient_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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"))
Expand Down

0 comments on commit a442178

Please sign in to comment.