We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5679a45 commit 430d399Copy full SHA for 430d399
crates/matrix-sdk-crypto/src/identities/user.rs
@@ -1067,7 +1067,10 @@ pub(crate) mod tests {
1067
bob.get_identity(alice.user_id(), None).await.unwrap().unwrap().other().unwrap();
1068
1069
assert!(bobs_own_identity.is_verified(), "Bob's identity should be verified.");
1070
- assert!(!bobs_alice_identity.is_verified(), "Alice's identity should not be considered verified since Bob has not signed it.");
+ assert!(
1071
+ !bobs_alice_identity.is_verified(),
1072
+ "Alice's identity should not be considered verified since Bob has not signed it."
1073
+ );
1074
}
1075
1076
#[async_test]
0 commit comments