Skip to content

Commit

Permalink
fix(clippy): redundant async block
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Loudet <[email protected]>
  • Loading branch information
J-Loudet committed Aug 30, 2023
1 parent c27b3e4 commit 24261c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh-flow/tests/dataflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,5 +474,5 @@ fn run_single_runtime() {

let h1 = async_std::task::spawn(async move { single_runtime().await });

async_std::task::block_on(async move { h1.await })
async_std::task::block_on(h1)
}

0 comments on commit 24261c0

Please sign in to comment.