commit | e614f28ce782edb082584a5847dd7962cdff4a8c | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sat Oct 27 22:50:12 2018 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sat Oct 27 22:50:12 2018 -0700 |
tree | b45f3d599823829feceea93a5327364fd899945d | |
parent | 54a8feefac86ec4248bcb7268fb59af8444613e1 [diff] [blame] |
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)) } }