From 6f52d0eef5a3178e1ebf7d4c7e2cf397756f57eb Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 7 Nov 2022 09:51:56 +0100 Subject: chore: remove allow(clippy::disallowed_names) --- testing/tests/filters.rs | 2 -- testing/tests/matches.rs | 2 -- testing/tests/operators.rs | 2 -- testing/tests/simple.rs | 2 +- 4 files changed, 1 insertion(+), 7 deletions(-) (limited to 'testing/tests') diff --git a/testing/tests/filters.rs b/testing/tests/filters.rs index b171e49..5229ecd 100644 --- a/testing/tests/filters.rs +++ b/testing/tests/filters.rs @@ -1,5 +1,3 @@ -#![allow(clippy::disallowed_names)] - #[cfg(feature = "serde-json")] #[macro_use] extern crate serde_json; diff --git a/testing/tests/matches.rs b/testing/tests/matches.rs index 05fd03b..f5ccb95 100644 --- a/testing/tests/matches.rs +++ b/testing/tests/matches.rs @@ -1,5 +1,3 @@ -#![allow(clippy::disallowed_names)] - use askama::Template; #[derive(Template)] diff --git a/testing/tests/operators.rs b/testing/tests/operators.rs index a63efbe..482c9c6 100644 --- a/testing/tests/operators.rs +++ b/testing/tests/operators.rs @@ -1,5 +1,3 @@ -#![allow(clippy::disallowed_names)] - use askama::Template; #[derive(Template)] diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 44439c5..ebc8267 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -1,4 +1,4 @@ -#![allow(clippy::disallowed_names)] +#![allow(clippy::disallowed_names)] // For the use of `foo` in test cases use askama::Template; -- cgit