Skip to content

Commit 225eb06

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

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/sql/migrations/migrations_tests.rs

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

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

102101
Ok(())
103102
}
@@ -138,7 +137,6 @@ async fn test_key_contacts_migration_email2() -> Result<()> {
138137
assert_eq!(email_bob.get_verifier_id(&t).await?, None);
139138

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

143141
Ok(())
144142
}
@@ -176,7 +174,6 @@ async fn test_key_contacts_migration_verified() -> Result<()> {
176174
let pgp_bob_id = bob_chat_contacts[0];
177175

178176
let pgp_bob = Contact::get_by_id(&t, pgp_bob_id).await?;
179-
dbg!(&pgp_bob);
180177
assert_eq!(pgp_bob.origin, Origin::OutgoingTo);
181178
assert_eq!(pgp_bob.e2ee_avail(&t).await?, true);
182179
assert_eq!(
50.2 KB
Loading

0 commit comments

Comments
 (0)