From 960a7f82eff7add333dfcbafc22af714e5b9fa1a Mon Sep 17 00:00:00 2001 From: Hocuri Date: Sat, 19 Nov 2022 12:03:05 +0100 Subject: [PATCH] Small test fix (#3764) Doesn't make a difference at this point, since the test is ignored anyway. --- src/authres.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/authres.rs b/src/authres.rs index 12345526b..afa5338f1 100644 --- a/src/authres.rs +++ b/src/authres.rs @@ -681,7 +681,7 @@ Authentication-Results: box.hispanilandia.net; spf=pass smtp.mailfrom=adbenitez@ .await; sent.payload - .insert_str(0, "Authentication-Results: example.org; dkim=fail"); + .insert_str(0, "Authentication-Results: example.org; dkim=fail\n"); let received = alice.recv_msg(&sent).await; @@ -717,7 +717,7 @@ Authentication-Results: box.hispanilandia.net; spf=pass smtp.mailfrom=adbenitez@ loop { if let Some(mut sent) = bob2.pop_sent_msg_opt(Duration::ZERO).await { sent.payload - .insert_str(0, "Authentication-Results: example.org; dkim=fail"); + .insert_str(0, "Authentication-Results: example.org; dkim=fail\n"); alice.recv_msg(&sent).await; } else if let Some(sent) = alice.pop_sent_msg_opt(Duration::ZERO).await { bob2.recv_msg(&sent).await;