diff --git a/src/chat.rs b/src/chat.rs index b0eed7096..d4bf010d9 100644 --- a/src/chat.rs +++ b/src/chat.rs @@ -4192,8 +4192,7 @@ mod tests { let msg = bob.get_last_msg().await; // forward said sticker to alice - forward_msgs(&bob, &[msg.id], bob_chat.get_id()) - .await?; + forward_msgs(&bob, &[msg.id], bob_chat.get_id()).await?; let forwarded_msg = bob.pop_sent_msg().await; alice.recv_msg(&forwarded_msg).await; @@ -4217,8 +4216,7 @@ mod tests { bob.recv_msg(&sent_msg).await; let msg = bob.get_last_msg().await; - forward_msgs(&bob, &[msg.id], bob_chat.get_id()) - .await?; + forward_msgs(&bob, &[msg.id], bob_chat.get_id()).await?; let forwarded_msg = bob.pop_sent_msg().await; alice.recv_msg(&forwarded_msg).await;