about summary refs log tree commit diff
path: root/tests/ui/format_args.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/format_args.fixed')
-rw-r--r--tests/ui/format_args.fixed12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/ui/format_args.fixed b/tests/ui/format_args.fixed
index e1c2d4d70be..24cf0847dd5 100644
--- a/tests/ui/format_args.fixed
+++ b/tests/ui/format_args.fixed
@@ -1,10 +1,12 @@
 // run-rustfix
-
-#![allow(unused)]
-#![allow(clippy::assertions_on_constants)]
-#![allow(clippy::eq_op)]
-#![allow(clippy::print_literal)]
 #![warn(clippy::to_string_in_format_args)]
+#![allow(unused)]
+#![allow(
+    clippy::assertions_on_constants,
+    clippy::eq_op,
+    clippy::print_literal,
+    clippy::uninlined_format_args
+)]
 
 use std::io::{stdout, Write};
 use std::ops::Deref;