Skip to content

Commit

Permalink
tests: rustfmt
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
  • Loading branch information
Keruspe committed Jul 18, 2020
1 parent 2b66ce1 commit 0b9a141
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/addr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ where
A::Iter: Send,
{
task::block_on(async move {
Ok(a.to_socket_addrs().await.map_err(|e| e.to_string())?.collect())
Ok(a.to_socket_addrs()
.await
.map_err(|e| e.to_string())?
.collect())
})
}

Expand Down

0 comments on commit 0b9a141

Please sign in to comment.