diff --git a/creyPY/fastapi/testing_async.py b/creyPY/fastapi/testing_async.py index 91c835e..538ae31 100644 --- a/creyPY/fastapi/testing_async.py +++ b/creyPY/fastapi/testing_async.py @@ -1,10 +1,10 @@ import json -from httpx import AsyncClient +from httpx import AsyncClient, ASGITransport class AsyncGenericClient: def __init__(self, app): - self.c = AsyncClient(app=app, base_url="http://testserver", follow_redirects=True) + self.c = AsyncClient(transport=ASGITransport(app=app), base_url="http://testserver", follow_redirects=True) self.default_headers = {} async def get(self, url: str, r_code: int = 200, parse_json=True):