Skip to content

Commit

Permalink
Update macros-tests/tests/camera.rs
Browse files Browse the repository at this point in the history
Co-authored-by: vcarpani <[email protected]>
  • Loading branch information
dan-jfisher and vcarpani authored Mar 20, 2023
1 parent d02651a commit a403643
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions macros-tests/tests/camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ async fn same_channel() {
let (client, _) = client_server_pair::<Json>().unwrap();
let duplicate = client.clone();
assert!(client.same_channel(&duplicate));

let (new_client, _) = client_server_pair::<Json>().unwrap();
assert!(!client.same_channel(&new_client));
}

#[tokio::test]
Expand Down

0 comments on commit a403643

Please sign in to comment.