You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's throwing and error AttributeError: 'async_generator' object has no attribute 'post'. I solved it declaring the function this way async def test_sign_new_user(default_client = httpx.AsyncClient()) -> None:
The text was updated successfully, but these errors were encountered:
Building-Python-Web-APIs-with-FastAPI/ch08/planner/tests/test_login.py
Line 6 in ad22a27
It's throwing and error
AttributeError: 'async_generator' object has no attribute 'post'
. I solved it declaring the function this wayasync def test_sign_new_user(default_client = httpx.AsyncClient()) -> None:
The text was updated successfully, but these errors were encountered: