From 0194c7fcbc32134603032aa81ecd0f4302801502 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Mon, 7 Nov 2022 18:07:22 +0100 Subject: [PATCH] Typo fix (#3738) --- src/download.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/download.rs b/src/download.rs index a05a35e53..99b6577b2 100644 --- a/src/download.rs +++ b/src/download.rs @@ -428,14 +428,14 @@ mod tests { .await?; alice.flush_status_updates().await?; let sent2 = alice.pop_sent_msg().await; - let sent2_rfc742_mid = Message::load_from_db(&alice, sent2.sender_msg_id) + let sent2_rfc724_mid = Message::load_from_db(&alice, sent2.sender_msg_id) .await? .rfc724_mid; // not downloading the status update results in an placeholder receive_imf_inner( &bob, - &sent2_rfc742_mid, + &sent2_rfc724_mid, sent2.payload().as_bytes(), false, Some(sent2.payload().len() as u32), @@ -451,7 +451,7 @@ mod tests { // (usually status updates are too small for not being downloaded directly) receive_imf_inner( &bob, - &sent2_rfc742_mid, + &sent2_rfc724_mid, sent2.payload().as_bytes(), false, None,