2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-04 15:36:40 +00:00

Fix whitespace errors in a test

This commit is contained in:
Josh Triplett 2022-06-20 03:53:33 -07:00
parent 1785b90e6f
commit 955fa65a64

View file

@ -904,13 +904,13 @@ mod tests {
}
#[test]
fn async_file_create_error () {
fn async_file_create_error() {
let file_name = Path::new("/tmp/does_not_exist/test");
let expect = std::fs::File::create(file_name).unwrap_err();
crate::task::block_on(async move {
let actual = File::create(file_name).await.unwrap_err();
assert_eq!(format!("{}", expect), format!("{}", actual));
assert_eq!(format!("{}", expect), format!("{}", actual));
})
}
}