about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhi-rustin <rustin.liu@gmail.com>2021-06-18 16:20:30 +0800
committerhi-rustin <rustin.liu@gmail.com>2021-06-18 16:20:30 +0800
commite1cc628af4dd85426fbb6a0ddcd0aa6b0951bc8c (patch)
treefe46857d51627b32dde9fb953b3acb33919db47a
parent6e8549e05eeb6a70fd80ceb393a1fe47b9bc915d (diff)
downloadrust-e1cc628af4dd85426fbb6a0ddcd0aa6b0951bc8c.tar.gz
rust-e1cc628af4dd85426fbb6a0ddcd0aa6b0951bc8c.zip
Address comment
-rw-r--r--tests/ui/iter_count.fixed10
-rw-r--r--tests/ui/iter_count.rs10
2 files changed, 10 insertions, 10 deletions
diff --git a/tests/ui/iter_count.fixed b/tests/ui/iter_count.fixed
index 52f833ece69..97c5929783d 100644
--- a/tests/ui/iter_count.fixed
+++ b/tests/ui/iter_count.fixed
@@ -3,11 +3,11 @@
 
 #![warn(clippy::iter_count)]
 #![allow(
-unused_variables,
-array_into_iter,
-unused_mut,
-clippy::into_iter_on_ref,
-clippy::unnecessary_operation
+    unused_variables,
+    array_into_iter,
+    unused_mut,
+    clippy::into_iter_on_ref,
+    clippy::unnecessary_operation
 )]
 
 extern crate option_helpers;
diff --git a/tests/ui/iter_count.rs b/tests/ui/iter_count.rs
index e76914aa54c..70bb734763f 100644
--- a/tests/ui/iter_count.rs
+++ b/tests/ui/iter_count.rs
@@ -3,11 +3,11 @@
 
 #![warn(clippy::iter_count)]
 #![allow(
-unused_variables,
-array_into_iter,
-unused_mut,
-clippy::into_iter_on_ref,
-clippy::unnecessary_operation
+    unused_variables,
+    array_into_iter,
+    unused_mut,
+    clippy::into_iter_on_ref,
+    clippy::unnecessary_operation
 )]
 
 extern crate option_helpers;