diff --git a/crates/matrix-sdk-crypto/src/identities/user.rs b/crates/matrix-sdk-crypto/src/identities/user.rs index 3182abd39..93b7f4bcf 100644 --- a/crates/matrix-sdk-crypto/src/identities/user.rs +++ b/crates/matrix-sdk-crypto/src/identities/user.rs @@ -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]