Format with rustfmt 0.99.6-nightly
diff --git a/tests/common/eq.rs b/tests/common/eq.rs
index c2d5d5b..86d66ee 100644
--- a/tests/common/eq.rs
+++ b/tests/common/eq.rs
@@ -66,10 +66,11 @@
 
 impl<T: SpanlessEq> SpanlessEq for ThinVec<T> {
     fn eq(&self, other: &Self) -> bool {
-        self.len() == other.len() && self
-            .iter()
-            .zip(other.iter())
-            .all(|(a, b)| SpanlessEq::eq(a, b))
+        self.len() == other.len()
+            && self
+                .iter()
+                .zip(other.iter())
+                .all(|(a, b)| SpanlessEq::eq(a, b))
     }
 }