Format with rustfmt 1.4.27-nightly
diff --git a/tests/test.rs b/tests/test.rs
index 40004d1..24fa97f 100644
--- a/tests/test.rs
+++ b/tests/test.rs
@@ -18,7 +18,11 @@
     ($run:expr) => {{
         CORRECT.with(|correct| correct.set(false));
         $run;
-        assert!(CORRECT.with(|correct| correct.get()), "{}", stringify!($run));
+        assert!(
+            CORRECT.with(|correct| correct.get()),
+            "{}",
+            stringify!($run),
+        );
     }};
 }