Removed println macros
All checks were successful
Rust Build / Check (pull_request) Successful in 42s
Rust Build / Test Suite (pull_request) Successful in 44s
Rust Build / Rustfmt (pull_request) Successful in 31s
Rust Build / Clippy (pull_request) Successful in 42s
Rust Build / build (pull_request) Successful in 44s
All checks were successful
Rust Build / Check (pull_request) Successful in 42s
Rust Build / Test Suite (pull_request) Successful in 44s
Rust Build / Rustfmt (pull_request) Successful in 31s
Rust Build / Clippy (pull_request) Successful in 42s
Rust Build / build (pull_request) Successful in 44s
This commit is contained in:
@@ -123,13 +123,9 @@ mod tests {
|
|||||||
source_path: &String,
|
source_path: &String,
|
||||||
destination_path: &String,
|
destination_path: &String,
|
||||||
) -> Result<u64, std::io::Error> {
|
) -> Result<u64, std::io::Error> {
|
||||||
println!("Copying file");
|
|
||||||
let src_path = std::path::Path::new(source_path);
|
let src_path = std::path::Path::new(source_path);
|
||||||
let dest_path = std::path::Path::new(destination_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) {
|
match std::fs::copy(src_path, dest_path) {
|
||||||
Ok(bytes) => Ok(bytes),
|
Ok(bytes) => Ok(bytes),
|
||||||
Err(err) => Err(err),
|
Err(err) => Err(err),
|
||||||
|
Reference in New Issue
Block a user