mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 01:16:31 +03:00
Small test fix (#3764)
Doesn't make a difference at this point, since the test is ignored anyway.
This commit is contained in:
@@ -681,7 +681,7 @@ Authentication-Results: box.hispanilandia.net; spf=pass smtp.mailfrom=adbenitez@
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
sent.payload
|
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;
|
let received = alice.recv_msg(&sent).await;
|
||||||
|
|
||||||
@@ -717,7 +717,7 @@ Authentication-Results: box.hispanilandia.net; spf=pass smtp.mailfrom=adbenitez@
|
|||||||
loop {
|
loop {
|
||||||
if let Some(mut sent) = bob2.pop_sent_msg_opt(Duration::ZERO).await {
|
if let Some(mut sent) = bob2.pop_sent_msg_opt(Duration::ZERO).await {
|
||||||
sent.payload
|
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;
|
alice.recv_msg(&sent).await;
|
||||||
} else if let Some(sent) = alice.pop_sent_msg_opt(Duration::ZERO).await {
|
} else if let Some(sent) = alice.pop_sent_msg_opt(Duration::ZERO).await {
|
||||||
bob2.recv_msg(&sent).await;
|
bob2.recv_msg(&sent).await;
|
||||||
|
|||||||
Reference in New Issue
Block a user