Skip to content

Commit

Permalink
Fix clippy.
Browse files Browse the repository at this point in the history
Signed-off-by: ChenYing Kuo <[email protected]>
  • Loading branch information
evshary committed Dec 27, 2024
1 parent 93dd5b2 commit ca9bde6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zenoh-test-ros2dds/tests/action.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn test_ros_client_zenoh_action() {

let (sender, receiver) = std::sync::mpsc::channel();

rt.spawn(async {
rt.spawn(async move {
common::init_env();

// We send request 5 and expect result [0, 1, 1, 2, 3, 5]
Expand Down Expand Up @@ -159,7 +159,7 @@ fn test_zenoh_client_ros_action() {

let (sender, receiver) = std::sync::mpsc::channel();

rt.spawn(async {
rt.spawn(async move {
common::init_env();

// We send request 5 and expect result [0, 1, 1, 2, 3, 5]
Expand Down

0 comments on commit ca9bde6

Please sign in to comment.