Skip to content

Commit

Permalink
🤖 Apply formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 3, 2024
1 parent 0131207 commit 76c37c1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/backend/tests/it/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,10 @@ fn test_add_user_hidden_dapp_id_does_not_update_if_version_is_none() {
add_hidden_dapp_id_arg,
);

assert_eq!(add_hidden_dapp_id_response,
Ok(Err(AddDappSettingsError::VersionMismatch)));
assert_eq!(
add_hidden_dapp_id_response,
Ok(Err(AddDappSettingsError::VersionMismatch))
);

let get_profile_response = pic_setup.update::<Result<UserProfile, GetUserProfileError>>(
caller,
Expand Down Expand Up @@ -302,8 +304,10 @@ fn test_add_user_hidden_dapp_id_does_not_add_duplicate_dapp_id() {
add_hidden_dapp_id_arg,
);

assert_eq!(add_hidden_dapp_id_response,
Ok(Err(AddDappSettingsError::DappIdAlreadyHidden)));
assert_eq!(
add_hidden_dapp_id_response,
Ok(Err(AddDappSettingsError::DappIdAlreadyHidden))
);

let get_final_profile_response = pic_setup.update::<Result<UserProfile, GetUserProfileError>>(
caller,
Expand Down

0 comments on commit 76c37c1

Please sign in to comment.