Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Oct 12, 2023
1 parent fdaf629 commit f663dac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zenoh/tests/matching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn zenoh_matching_status_any() {
.unwrap();

let matching_listener = ztimeout!(publisher1.matching_listener().res_async()).unwrap();

let received_status = matching_listener.recv_timeout(RECV_TIMEOUT);
assert!(received_status.err() == Some(RecvTimeoutError::Timeout));

Expand Down Expand Up @@ -111,7 +111,7 @@ fn zenoh_matching_status_remote() {
.unwrap();

let matching_listener = ztimeout!(publisher1.matching_listener().res_async()).unwrap();

let received_status = matching_listener.recv_timeout(RECV_TIMEOUT);
assert!(received_status.err() == Some(RecvTimeoutError::Timeout));

Expand Down Expand Up @@ -177,7 +177,7 @@ fn zenoh_matching_status_local() {
.unwrap();

let matching_listener = ztimeout!(publisher1.matching_listener().res_async()).unwrap();

let received_status = matching_listener.recv_timeout(RECV_TIMEOUT);
assert!(received_status.err() == Some(RecvTimeoutError::Timeout));

Expand Down Expand Up @@ -222,4 +222,4 @@ fn zenoh_matching_status_local() {
let matching_status = ztimeout!(publisher1.matching_status().res_async()).unwrap();
assert!(!matching_status.is_matching());
});
}
}

0 comments on commit f663dac

Please sign in to comment.