From bef81dc512f2a634b0890e49471b7ec7294e2671 Mon Sep 17 00:00:00 2001 From: johnson-oragui Date: Mon, 12 Aug 2024 16:53:44 +0100 Subject: [PATCH] chore: updated tests accordingly --- tests/v1/user/change_user_password_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/v1/user/change_user_password_test.py b/tests/v1/user/change_user_password_test.py index cd5e0612c..5b70c061b 100644 --- a/tests/v1/user/change_user_password_test.py +++ b/tests/v1/user/change_user_password_test.py @@ -86,7 +86,7 @@ def test_wrong_pwd(mock_db_session, mock_user_service): user_pwd_change = client.patch( CHANGE_PWD_ENDPOINT, - json={"old_password": "Testpassw23", + json={"old_password": "Testpassw23#", "new_password": "Ojobonandom@123"}, headers={"Authorization": f"Bearer {access_token}"}, )