Skip to content

Commit

Permalink
chore(fmt): Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jul 18, 2024
1 parent 5679a45 commit 430d399
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/matrix-sdk-crypto/src/identities/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,10 @@ pub(crate) mod tests {
bob.get_identity(alice.user_id(), None).await.unwrap().unwrap().other().unwrap();

assert!(bobs_own_identity.is_verified(), "Bob's identity should be verified.");
assert!(!bobs_alice_identity.is_verified(), "Alice's identity should not be considered verified since Bob has not signed it.");
assert!(
!bobs_alice_identity.is_verified(),
"Alice's identity should not be considered verified since Bob has not signed it."
);
}

#[async_test]
Expand Down

0 comments on commit 430d399

Please sign in to comment.