Skip to content

Commit

Permalink
update ip and return value of connection call
Browse files Browse the repository at this point in the history
  • Loading branch information
taddes committed Apr 19, 2024
1 parent 06b1fd4 commit a77030b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_integration_all_rust.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def setup_mock_server():
global MOCK_SERVER_THREAD

MOCK_SERVER_THREAD = Thread(
target=run_fastapi_app, kwargs=dict(host="localhost", port=MOCK_SERVER_PORT)
target=run_fastapi_app, kwargs=dict(host="127.0.0.1", port=MOCK_SERVER_PORT)
)
MOCK_SERVER_THREAD.daemon = True
MOCK_SERVER_THREAD.start()
Expand Down Expand Up @@ -1419,7 +1419,7 @@ async def quick_register(self, connection_port=None):
await client.connect()
await client.hello()
await client.register()
returnValue(client)
return client

@pytest.mark.asyncio
async def shut_down(self, client=None):
Expand Down

0 comments on commit a77030b

Please sign in to comment.