Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Jun 24, 2024
1 parent edd9ad3 commit 4ee645c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests_rf/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async def session() -> AsyncGenerator[aiohttp.ClientSession, None]:

@pytest.fixture()
def user_credentials() -> tuple[str, str]:
username: str = os.getenv("TEST_USERNAME")
password: str = os.getenv("TEST_PASSWORD")
username: str = os.getenv("TEST_USERNAME") or "[email protected]"
password: str = os.getenv("TEST_PASSWORD") or "password!"

return username, password

0 comments on commit 4ee645c

Please sign in to comment.