Removed eprintln! in ftp file transfer causing break when on Windows

This commit is contained in:
veeso
2021-04-13 09:09:04 +02:00
parent 08b8946429
commit 6c6dadc4e7
6 changed files with 1 additions and 10 deletions

View File

@@ -525,7 +525,6 @@ mod tests {
// Iterate keys
for key in client.iter_ssh_keys() {
let host: SshHost = client.get_ssh_key(key).ok().unwrap().unwrap();
println!("{:?}", host);
assert_eq!(host.0, String::from("192.168.1.31"));
assert_eq!(host.1, String::from("pi"));
let mut expected_key_path: PathBuf = key_path.clone();