about summary refs log tree commit diff
path: root/tests/coverage/partial_eq.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2024-01-16 13:52:08 +1100
committerZalathar <Zalathar@users.noreply.github.com>2024-01-18 10:42:37 +1100
commit99797bbd9fdb138dd59a782f156db8397d07943c (patch)
tree628788d713a0b0a2fba7bf19acfb3828bb251764 /tests/coverage/partial_eq.rs
parent1f9353ae2ca81b0a508e38751b0d3ab213526f56 (diff)
downloadrust-99797bbd9fdb138dd59a782f156db8397d07943c.tar.gz
rust-99797bbd9fdb138dd59a782f156db8397d07943c.zip
coverage: Format all remaining tests
These tests can simply be reformatted as normal, because the resulting changes
are unimportant.
Diffstat (limited to 'tests/coverage/partial_eq.rs')
-rw-r--r--tests/coverage/partial_eq.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/coverage/partial_eq.rs b/tests/coverage/partial_eq.rs
index dd8b42c18ce..825e266f111 100644
--- a/tests/coverage/partial_eq.rs
+++ b/tests/coverage/partial_eq.rs
@@ -22,7 +22,12 @@ fn main() {
     let version_3_2_1 = Version::new(3, 2, 1);
     let version_3_3_0 = Version::new(3, 3, 0);
 
-    println!("{:?} < {:?} = {}", version_3_2_1, version_3_3_0, version_3_2_1 < version_3_3_0);
+    println!(
+        "{:?} < {:?} = {}",
+        version_3_2_1,
+        version_3_3_0,
+        version_3_2_1 < version_3_3_0
+    );
 }
 
 /*