From c435cbaf5ad8d6036a8593c90cf4cee434d21063 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sun, 3 Nov 2024 15:16:57 -0800 Subject: [PATCH] rustfmt --- tests/test.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index 42247c5..c1f31c2 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -859,14 +859,13 @@ fn test_pow_fails_on_nan() { a.pow(b); } - #[test] fn test_ref_ref_binop_regression() { - // repro from: + // repro from: // https://github.com/reem/rust-ordered-float/issues/91 // // impl<'a, T> $imp for &'a OrderedFloat - // where + // where // &'a T: $imp // { // type Output = OrderedFloat<<&'a T as $imp>::Output>;