diff --git a/crates/matrix-sdk-crypto/src/machine.rs b/crates/matrix-sdk-crypto/src/machine.rs index 72a7e2bca..8f2f19c86 100644 --- a/crates/matrix-sdk-crypto/src/machine.rs +++ b/crates/matrix-sdk-crypto/src/machine.rs @@ -4132,7 +4132,8 @@ pub(crate) mod tests { let ciphertext = key_backup_data.session_data.ciphertext.encode(); let mac = key_backup_data.session_data.mac.encode(); - // Prior to the fix for GHSA-9ggc-845v-gcgv, this would produce a `Mac(MacError)` + // Prior to the fix for GHSA-9ggc-845v-gcgv, this would produce a + // `Mac(MacError)` backup_decryption_key .decrypt_v1(&ephemeral, &mac, &ciphertext) .expect("The backed up key should be decrypted successfully");