Skip to content

Commit

Permalink
fix default passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Dec 13, 2024
1 parent e6f9466 commit d3cd70f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/tests/integration/common_utils/managers/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


DOMAIN = "test.com"
DEFAULT_PASSWORD = "test"
DEFAULT_PASSWORD = "TestPassword123!"


def build_email(name: str) -> str:
Expand Down
2 changes: 1 addition & 1 deletion web/tests/e2e/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// constants.js
export const TEST_CREDENTIALS = {
email: "[email protected]",
password: "test",
password: "TestPassword123!",
};

0 comments on commit d3cd70f

Please sign in to comment.