Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmedrano committed Sep 9, 2024
1 parent c32c009 commit c220b0d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/port/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,8 @@ mod test {
ac.as_client()
.connect_ports_by_name("port_audio_crw:ob", "port_audio_crw:ib")
.unwrap();
assert_eq!(
success_receiver
.recv_timeout(std::time::Duration::from_secs(2))
.unwrap(),
true
);
assert!(success_receiver
.recv_timeout(std::time::Duration::from_secs(2))
.unwrap(),);
}
}

0 comments on commit c220b0d

Please sign in to comment.