Format with rustfmt 2019-08-19
diff --git a/tests/features.rs b/tests/features.rs
index b61e337..073f6e6 100644
--- a/tests/features.rs
+++ b/tests/features.rs
@@ -1,4 +1,8 @@
-#[test] #[ignore]
+#[test]
+#[ignore]
 fn make_sure_no_proc_macro() {
-    assert!(!cfg!(feature = "proc-macro"), "still compiled with proc_macro?");
+    assert!(
+        !cfg!(feature = "proc-macro"),
+        "still compiled with proc_macro?"
+    );
 }