From ae5a2396f3e9ba9c739d06d31560088ce2a10615 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 22 Mar 2020 16:18:53 +0100 Subject: [PATCH] fix typo --- src/dc_receive_imf.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dc_receive_imf.rs b/src/dc_receive_imf.rs index a0ff8adea..f4ec776f2 100644 --- a/src/dc_receive_imf.rs +++ b/src/dc_receive_imf.rs @@ -1700,7 +1700,7 @@ mod tests { format!("<{}>", msg.rfc724_mid).as_str() )); assert!(is_known_rfc724_mid(&t.ctx, &msg.rfc724_mid)); - assert!(!is_known_rfc724_mid(&t.ctx, "unexistant@message.id")); + assert!(!is_known_rfc724_mid(&t.ctx, "nonexistant@message.id")); } #[test] @@ -1717,6 +1717,6 @@ mod tests { format!("<{}>", msg.rfc724_mid).as_str() )); assert!(is_msgrmsg_rfc724_mid(&t.ctx, &msg.rfc724_mid)); - assert!(!is_msgrmsg_rfc724_mid(&t.ctx, "unexistant@message.id")); + assert!(!is_msgrmsg_rfc724_mid(&t.ctx, "nonexistant@message.id")); } }