Skip to content

Commit

Permalink
Update user_test.py
Browse files Browse the repository at this point in the history
Fix E721
  • Loading branch information
Smartappli authored Dec 1, 2024
1 parent 09ca18a commit 9cb10de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/syft/tests/syft/users/user_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def test_guest_user_update_to_root_email_failed(

def test_user_view_set_password(worker: Worker, root_client: DatasiteClient) -> None:
change_ok = root_client.account.set_password("123", confirm=False)
assert type(change_ok) == SyftSuccess
assert type(change_ok) is SyftSuccess
assert "Successfully" in change_ok.message

email = root_client.account.email
Expand Down

0 comments on commit 9cb10de

Please sign in to comment.