From b8aa0a64868cd6b6663cb87dec9f6cdddb28ffe7 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 13 Oct 2021 12:46:29 +1100 Subject: [PATCH] Remove dbg! in test --- daemon/src/db.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/daemon/src/db.rs b/daemon/src/db.rs index cfe0f73..cf96ac8 100644 --- a/daemon/src/db.rs +++ b/daemon/src/db.rs @@ -652,8 +652,6 @@ mod tests { // file has to exist in order to connect with sqlite File::create(temp_db.clone()).unwrap(); - dbg!(&temp_db); - let pool = SqlitePool::connect(format!("sqlite:{}", temp_db.display()).as_str()) .await .unwrap();