diff --git a/src/meta.rs b/src/meta.rs index 8d5bf80..234ff50 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -123,13 +123,9 @@ mod tests { source_path: &String, destination_path: &String, ) -> Result { - println!("Copying file"); let src_path = std::path::Path::new(source_path); let dest_path = std::path::Path::new(destination_path); - println!("Src: {:?}", src_path); - println!("Dest: {:?}", dest_path); - match std::fs::copy(src_path, dest_path) { Ok(bytes) => Ok(bytes), Err(err) => Err(err),