diff --git a/tests/bounded.rs b/tests/bounded.rs index fd9dfbd..86f71e1 100644 --- a/tests/bounded.rs +++ b/tests/bounded.rs @@ -1,3 +1,5 @@ +#![allow(clippy::bool_assert_comparison)] + use std::sync::atomic::{AtomicUsize, Ordering}; use std::thread::sleep; use std::time::Duration; diff --git a/tests/unbounded.rs b/tests/unbounded.rs index 50ed50b..8574c06 100644 --- a/tests/unbounded.rs +++ b/tests/unbounded.rs @@ -1,3 +1,5 @@ +#![allow(clippy::bool_assert_comparison)] + use std::sync::atomic::{AtomicUsize, Ordering}; use std::thread::sleep; use std::time::Duration;