From 2df227111eb7d5f4c95e1e84b9264da9a7d914e6 Mon Sep 17 00:00:00 2001 From: Anton Dubovik Date: Thu, 12 Sep 2024 10:35:42 +0100 Subject: [PATCH] fix: minor fixes --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 4c2fa7e..c343116 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,7 +21,7 @@ async def test_http_client(): from aidial_adapter_bedrock.app import app async with httpx.AsyncClient( - transport=ASGITransport(app=app), # type: ignore + transport=ASGITransport(app), # type: ignore base_url="http://test-app.com", ) as client: yield client