From cca638635c6a0792aa946ab6dcf3b6859ba25b61 Mon Sep 17 00:00:00 2001 From: Kinto Date: Mon, 17 Jun 2024 20:40:39 +0200 Subject: [PATCH] Drop redundant `#[allow(clippy::*)]` --- benches/specializations.rs | 2 +- tests/quick.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/benches/specializations.rs b/benches/specializations.rs index 3a5d80326..e70323f8e 100644 --- a/benches/specializations.rs +++ b/benches/specializations.rs @@ -1,4 +1,4 @@ -#![allow(unstable_name_collisions, clippy::incompatible_msrv)] +#![allow(unstable_name_collisions)] use criterion::black_box; use criterion::BenchmarkId; diff --git a/tests/quick.rs b/tests/quick.rs index 5b8fd6a21..6fe6f6923 100644 --- a/tests/quick.rs +++ b/tests/quick.rs @@ -253,7 +253,6 @@ where let mut it = get_it(); for _ in 0..(counts.len() - 1) { - #[allow(clippy::manual_assert)] if it.next().is_none() { panic!("Iterator shouldn't be finished, may not be deterministic"); }