should I toss these tests out?

This commit is contained in:
Nickiel12 2022-07-16 22:19:24 -07:00
parent 970eabdda8
commit 2dd94631ff

View file

@ -13,7 +13,7 @@ fn it_works() {
#[test] #[test]
fn can_make_ctrl_c_handler() { fn can_make_ctrl_c_handler() {
let (control_c_flag_tx, _control_c_called_flag_rx) = sync_flag::new_syncflag(false); let (control_c_flag_tx, _control_c_called_flag_rx) = sync_flag::new_syncflag(false);
crate::setup_control_c(control_c_flag_tx); crate::setup_control_c();
drop(_control_c_called_flag_rx); drop(_control_c_called_flag_rx);
} }