From 9d05e9902afd4f0fe33edcbae741b72b1e0cf178 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 11 Jul 2023 16:39:02 -0500 Subject: [PATCH] refactor(jj-lib): remove allow(unknown_lints) Summary: Unneeded with the MSRV bump. The other one will have to wait until Rust 1.72.0 Signed-off-by: Austin Seipp Change-Id: Ifb3d862aedd3f2aeb05a86ce76978d4f --- lib/tests/test_revset.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tests/test_revset.rs b/lib/tests/test_revset.rs index 5d6ce36b1..053782d42 100644 --- a/lib/tests/test_revset.rs +++ b/lib/tests/test_revset.rs @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -// TODO: Remove after https://github.com/frondeus/test-case/issues/122 is resolved -#![allow(unknown_lints)] // Needed for clippy <1.70 +// this was supposed to be fixed in 1.71.0, but barely missed the cut. +// can be released after we bump MSRV to 1.72.0, see: +// https://github.com/frondeus/test-case/issues/126#issuecomment-1635916592 #![allow(clippy::items_after_test_module)] -#![deny(unknown_lints)] use std::path::Path;