diff --git a/backend/tests/integration/common_utils/managers/user.py b/backend/tests/integration/common_utils/managers/user.py index 26cb29cdffb..4390d6fab3d 100644 --- a/backend/tests/integration/common_utils/managers/user.py +++ b/backend/tests/integration/common_utils/managers/user.py @@ -14,7 +14,7 @@ DOMAIN = "test.com" -DEFAULT_PASSWORD = "test" +DEFAULT_PASSWORD = "TestPassword123!" def build_email(name: str) -> str: diff --git a/web/tests/e2e/constants.js b/web/tests/e2e/constants.js index d6f5f457c3b..0f9a01e4702 100644 --- a/web/tests/e2e/constants.js +++ b/web/tests/e2e/constants.js @@ -1,5 +1,5 @@ // constants.js export const TEST_CREDENTIALS = { email: "admin_user@test.com", - password: "test", + password: "TestPassword123!", };