Skip to content

Commit

Permalink
fix: dynamic import path
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrvlh committed Nov 3, 2024
1 parent a570c66 commit aabe0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_race_condition.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def get(self, *args, **kwargs):
await asyncio.sleep(0)
return Response(token="")

with patch("fastapi_sso.sso.base.httpx") as httpx:
with patch("litestar_sso.sso.base.httpx") as httpx:
httpx.AsyncClient = AsyncClient

first_response = Response(token="first_token") # noqa: S106
Expand Down

0 comments on commit aabe0b4

Please sign in to comment.