diff --git a/app/routers/tests/conftest.py b/app/routers/tests/conftest.py index 98e1903..851e288 100644 --- a/app/routers/tests/conftest.py +++ b/app/routers/tests/conftest.py @@ -10,8 +10,8 @@ @pytest.fixture async def signup_data() -> dict[str, str]: return { - "email": faker.email(), - "password": faker.password(length=8), + "email": faker.email(), # type: ignore + "password": faker.password(length=8), # type: ignore }