diff --git a/crates/biome_js_analyze/src/analyzers/nursery/no_focused_tests.rs b/crates/biome_js_analyze/src/analyzers/nursery/no_focused_tests.rs index b84f4f8e11a5..e3c98e64000f 100644 --- a/crates/biome_js_analyze/src/analyzers/nursery/no_focused_tests.rs +++ b/crates/biome_js_analyze/src/analyzers/nursery/no_focused_tests.rs @@ -145,8 +145,7 @@ impl Rule for NoFocusedTests { Some(JsRuleAction { category: biome_analyze::ActionCategory::QuickFix, applicability: Applicability::MaybeIncorrect, - message: markup! { "Remove the 'only' method to ensure all tests are executed." } - .to_owned(), + message: markup! { "Remove focus from test." }.to_owned(), mutation, }) }