about summary refs log tree commit diff
diff options
context:
space:
mode:
authorblyxyas <blyxyas@gmail.com>2023-04-04 11:42:32 +0200
committerblyxyas <blyxyas@gmail.com>2023-04-04 11:42:32 +0200
commitb2f919182045773ee2a4091ef071ffd3183efe45 (patch)
treefce188e84f9e8a24da3c417ffb2d773ce15832d8
parentbd2a5b2322729137b26b899947e777c41c9aae96 (diff)
downloadrust-b2f919182045773ee2a4091ef071ffd3183efe45.tar.gz
rust-b2f919182045773ee2a4091ef071ffd3183efe45.zip
Fix formatting and lint description
-rw-r--r--clippy_lints/src/tests_outside_test_module.rs12
1 files changed, 5 insertions, 7 deletions
diff --git a/clippy_lints/src/tests_outside_test_module.rs b/clippy_lints/src/tests_outside_test_module.rs
index e454008c68d..0a0a77082e0 100644
--- a/clippy_lints/src/tests_outside_test_module.rs
+++ b/clippy_lints/src/tests_outside_test_module.rs
@@ -6,13 +6,11 @@ use rustc_span::{def_id::LocalDefId, Span};
 
 declare_clippy_lint! {
     /// ### What it does
-    ///
-    /// Triggers when a testing function (marked with the `#[test]` attribute) isn't inside a testing module (marked with `#[cfg(test)]`).
-    ///
+    /// Triggers when a testing function (marked with the `#[test]` attribute) isn't inside a testing module
+    /// (marked with `#[cfg(test)]`).
     /// ### Why is this bad?
-    ///
-    /// The idiomatic (and more performant) way of writing tests is inside a testing module (flagged with `#[cfg(test)]`), having test functions outside of this module is confusing and may lead to them being "hidden".
-    ///
+    /// The idiomatic (and more performant) way of writing tests is inside a testing module (flagged with `#[cfg(test)]`),
+    /// having test functions outside of this module is confusing and may lead to them being "hidden".
     /// ### Example
     /// ```rust
     /// #[test]
@@ -39,7 +37,7 @@ declare_clippy_lint! {
     #[clippy::version = "1.70.0"]
     pub TESTS_OUTSIDE_TEST_MODULE,
     restriction,
-    "The test function `my_cool_test` is outside the testing module `tests`."
+    "A test function is outside the testing module."
 }
 
 declare_lint_pass!(TestsOutsideTestModule => [TESTS_OUTSIDE_TEST_MODULE]);