Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/sql/migrations/migrations_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ async fn test_key_contacts_migration_email1() -> Result<()> {
assert_eq!(email_bob.fingerprint(), None);
assert_eq!(email_bob.get_verifier_id(&t).await?, None);

let bob_chat_contacts = chat::get_chat_contacts(&t, ChatId::new(10)).await?;
dbg!(&bob_chat_contacts);

Ok(())
}

Expand Down Expand Up @@ -137,9 +134,6 @@ async fn test_key_contacts_migration_email2() -> Result<()> {
assert_eq!(email_bob.fingerprint(), None);
assert_eq!(email_bob.get_verifier_id(&t).await?, None);

let bob_chat_contacts = chat::get_chat_contacts(&t, ChatId::new(10)).await?;
dbg!(&bob_chat_contacts);

Ok(())
}

Expand Down Expand Up @@ -176,7 +170,6 @@ async fn test_key_contacts_migration_verified() -> Result<()> {
let pgp_bob_id = bob_chat_contacts[0];

let pgp_bob = Contact::get_by_id(&t, pgp_bob_id).await?;
dbg!(&pgp_bob);
assert_eq!(pgp_bob.origin, Origin::OutgoingTo);
assert_eq!(pgp_bob.e2ee_avail(&t).await?, true);
assert_eq!(
Expand Down