Skip to content

Commit 92098b7

Browse files
committed
Fix test_sync_accept_before_first_msg test
1 parent 3cb0e4d commit 92098b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/chat/chat_tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2934,9 +2934,9 @@ async fn test_sync_accept_before_first_msg() -> Result<()> {
29342934
assert_eq!(alice1_contacts.len(), 1);
29352935
let a1b_contact_id = alice1_contacts[0];
29362936
let a1b_contact = Contact::get_by_id(alice1, a1b_contact_id).await?;
2937-
assert_eq!(a1b_contact.get_addr(), "[email protected]");
2937+
assert_eq!(a1b_contact.get_addr(), "");
29382938
assert_eq!(a1b_contact.origin, Origin::CreateChat);
2939-
let a1b_chat = alice1.get_chat(bob).await;
2939+
let a1b_chat = alice1.get_pgp_chat(bob).await;
29402940
assert_eq!(a1b_chat.blocked, Blocked::Not);
29412941
let chats = Chatlist::try_load(alice1, 0, None, None).await?;
29422942
assert_eq!(chats.len(), 1);

0 commit comments

Comments
 (0)