sendmail: upgrade to async_std::process from the 1.8.0 release (#520)

This commit is contained in:
Paolo Barbolini
2020-12-23 20:33:46 +01:00
committed by GitHub
parent aac5c9929f
commit 89fa5cdb80
4 changed files with 32 additions and 11 deletions

View File

@@ -39,6 +39,7 @@ mod test {
.unwrap();
let result = sender.send(email).await;
println!("{:?}", result);
assert!(result.is_ok());
}
@@ -58,6 +59,7 @@ mod test {
.unwrap();
let result = sender.send(email).await;
println!("{:?}", result);
assert!(result.is_ok());
}
}