Skip to content

Commit 9c9f804

Browse files
committed
Fix CI
1 parent d97bc85 commit 9c9f804

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

clippy_lints/src/lib.register_nursery.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ store.register_group(true, "clippy::nursery", Some("clippy_nursery"), vec![
1818
LintId::of(missing_const_for_fn::MISSING_CONST_FOR_FN),
1919
LintId::of(mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL),
2020
LintId::of(mutex_atomic::MUTEX_INTEGER),
21-
LintId::of(methods::CLONED_LAST),
2221
LintId::of(non_send_fields_in_send_ty::NON_SEND_FIELDS_IN_SEND_TY),
2322
LintId::of(nonstandard_macro_braces::NONSTANDARD_MACRO_BRACES),
2423
LintId::of(option_if_let_else::OPTION_IF_LET_ELSE),

tests/ui/cloned_last.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// run-rustfix
2-
#![warn(clippy::nursery)]
2+
#![warn(clippy::all)]
33

44
fn main() {
55
#[rustfmt::skip]

tests/ui/cloned_last.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// run-rustfix
2-
#![warn(clippy::nursery)]
2+
#![warn(clippy::all)]
33

44
fn main() {
55
#[rustfmt::skip]

0 commit comments

Comments
 (0)