diff --git a/tests/poseidon.rs b/tests/poseidon.rs index 33a79a6..977040e 100644 --- a/tests/poseidon.rs +++ b/tests/poseidon.rs @@ -77,7 +77,6 @@ impl Database for MySled { let db = sled::open(dbpath).unwrap(); if !db.was_recovered() { - println!("Hello world"); fs::remove_dir_all(dbpath).expect("Error removing db"); return Err(Error("Trying to load non-existing database!".to_string())); } diff --git a/tests/sled_keccak.rs b/tests/sled_keccak.rs index 634cabd..21b1366 100644 --- a/tests/sled_keccak.rs +++ b/tests/sled_keccak.rs @@ -20,7 +20,6 @@ impl Database for MySled { let db = sled::open(dbpath).unwrap(); if !db.was_recovered() { - println!("Hello world"); fs::remove_dir_all(dbpath).expect("Error removing db"); return Err(Error("Trying to load non-existing database!".to_string())); }