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:
parent
1785b90e6f
commit
955fa65a64
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue