We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca59640 commit f1de01dCopy full SHA for f1de01d
src/securejoin/securejoin_tests.rs
@@ -711,8 +711,8 @@ async fn test_unknown_sender() -> Result<()> {
711
712
let sent = bob.send_text(bob_chat_id, "Hi hi!").await;
713
714
- let alice_bob_contact_id = Contact::create(&alice, "Bob", "bob@example.net").await?;
715
- remove_contact_from_chat(&alice, alice_chat_id, alice_bob_contact_id).await?;
+ let alice_bob_contact = alice.add_or_lookup_pgp_contact(&bob).await;
+ remove_contact_from_chat(&alice, alice_chat_id, alice_bob_contact.id).await?;
716
alice.pop_sent_msg().await;
717
718
// The message from Bob is delivered late, Bob is already removed.
0 commit comments