Skip to content

Commit

Permalink
Change password back
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem committed Oct 30, 2024
1 parent f1f501d commit f32955d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion py/tests/integration/runner_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def test_user_password_management():
print("Testing: User password management")

client.login("[email protected]", "password123")

# Change password
client.change_password("password123", "new_password")
# Request password reset
Expand All @@ -596,6 +596,9 @@ def test_user_password_management():
# reset_confirm_result = client.confirm_password_reset("reset_token_here", "password123")
# print(f"Reset Confirm Result:\n{reset_confirm_result}")

# Change password back to the original password
client.change_password("new_password", "password123")

print("User password management test passed")
print("~" * 100)

Expand Down

0 comments on commit f32955d

Please sign in to comment.