From d014c7ca88177df8e7ef5a96269fab167bddea44 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 18 Sep 2023 22:01:38 -0400 Subject: [PATCH] Fix test --- crates/ruff_workspace/src/configuration.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/ruff_workspace/src/configuration.rs b/crates/ruff_workspace/src/configuration.rs index c362d7e507d956..37c8985f650bf3 100644 --- a/crates/ruff_workspace/src/configuration.rs +++ b/crates/ruff_workspace/src/configuration.rs @@ -855,12 +855,13 @@ mod tests { const PREVIEW_RULES: &[Rule] = &[ Rule::DirectLoggerInstantiation, + Rule::InvalidGetLoggerArgument, Rule::ManualDictComprehension, + Rule::ReimplementedStarmap, Rule::SliceCopy, Rule::TooManyPublicMethods, Rule::TooManyPublicMethods, Rule::UndocumentedWarn, - Rule::InvalidGetLoggerArgument, ]; #[allow(clippy::needless_pass_by_value)]