about summary refs log tree commit diff
path: root/clippy_dev
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-27 11:40:22 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-08-11 14:02:28 +0000
commit3d88fae050578fe165b6544d49fbac2f23e60391 (patch)
tree06b71f97abd40bd3cea95a02398bd814369c4e69 /clippy_dev
parent0afd38b093a3de1e4a5a505f4138bcc1397263e7 (diff)
Update ui test crate
Diffstat (limited to 'clippy_dev')
-rw-r--r--clippy_dev/src/update_lints.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/clippy_dev/src/update_lints.rs b/clippy_dev/src/update_lints.rs
index 7c2e06ea69a..842aeed2aa4 100644
--- a/clippy_dev/src/update_lints.rs
+++ b/clippy_dev/src/update_lints.rs
@@ -690,7 +690,6 @@ fn gen_deprecated_lints_test(lints: &[DeprecatedLint]) -> String {
 fn gen_renamed_lints_test(lints: &[RenamedLint]) -> String {
     let mut seen_lints = HashSet::new();
     let mut res: String = GENERATED_FILE_COMMENT.into();
-    res.push_str("//@run-rustfix\n\n");
     for lint in lints {
         if seen_lints.insert(&lint.new_name) {
             writeln!(res, "#![allow({})]", lint.new_name).unwrap();