Skip to content

Commit b4db278

Browse files
committed
refactor: Remove unneeded dbg! statements
1 parent f4ee01e commit b4db278

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/sql/migrations/migrations_tests.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@ async fn test_key_contacts_migration_email1() -> Result<()> {
9696
assert_eq!(email_bob.fingerprint(), None);
9797
assert_eq!(email_bob.get_verifier_id(&t).await?, None);
9898

99-
let bob_chat_contacts = chat::get_chat_contacts(&t, ChatId::new(10)).await?;
100-
dbg!(&bob_chat_contacts);
101-
10299
Ok(())
103100
}
104101

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

140-
let bob_chat_contacts = chat::get_chat_contacts(&t, ChatId::new(10)).await?;
141-
dbg!(&bob_chat_contacts);
142-
143137
Ok(())
144138
}
145139

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

178172
let pgp_bob = Contact::get_by_id(&t, pgp_bob_id).await?;
179-
dbg!(&pgp_bob);
180173
assert_eq!(pgp_bob.origin, Origin::OutgoingTo);
181174
assert_eq!(pgp_bob.e2ee_avail(&t).await?, true);
182175
assert_eq!(

0 commit comments

Comments
 (0)