From 9ef465fdf46356a8033512cf3002ca84aec00fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Mon, 13 May 2024 12:09:42 +0200 Subject: [PATCH] chore: Fix the formatting --- crates/matrix-sdk-crypto/src/machine.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/matrix-sdk-crypto/src/machine.rs b/crates/matrix-sdk-crypto/src/machine.rs index b7ee817ac..91bf21338 100644 --- a/crates/matrix-sdk-crypto/src/machine.rs +++ b/crates/matrix-sdk-crypto/src/machine.rs @@ -4397,7 +4397,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");