From 711a4bb76eeddc35a1fa81178493355f3d3a4a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 14 Jan 2022 12:58:26 +0200 Subject: [PATCH] gstreamer: Silence a new clippy warning in the tests --- gstreamer/src/clock_time.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gstreamer/src/clock_time.rs b/gstreamer/src/clock_time.rs index 232ad95d7..59931cd6e 100644 --- a/gstreamer/src/clock_time.rs +++ b/gstreamer/src/clock_time.rs @@ -556,6 +556,7 @@ mod tests { } #[test] + #[allow(clippy::nonminimal_bool)] fn comp() { assert!(ClockTime::ZERO < CT_2); assert!(Some(ClockTime::ZERO) < Some(CT_2));