Skip to content

Commit

Permalink
Clarify "PASSWORD" was actually "JWT_PASSWORD" this whole time
Browse files Browse the repository at this point in the history
  • Loading branch information
blast-hardcheese committed Jan 17, 2024
1 parent e4a7da9 commit 3d8ff11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
url = req.text
self.db = AsyncDatabase(url)
else:
password = os.environ["PASSWORD"]
password = os.environ["JWT_PASSWORD"]
req = requests.get(
"https://database-test-jwt-util.replit.app", auth=("test", password)
)
Expand Down Expand Up @@ -141,7 +141,7 @@ def setUp(self) -> None:
url = req.text
self.db = Database(url)
else:
password = os.environ["PASSWORD"]
password = os.environ["JWT_PASSWORD"]
req = requests.get(
"https://database-test-jwt-util.replit.app", auth=("test", password)
)
Expand Down

0 comments on commit 3d8ff11

Please sign in to comment.