diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index b30c2b5..7fc6a5b 100644
--- a/maud/Cargo.toml
+++ b/maud/Cargo.toml
@@ -22,7 +22,6 @@ actix-web = { version = ">= 0.6.12, < 0.8.0", optional = true }
 [dev-dependencies]
 compiletest_rs = "0.3.15"
 
-
 [badges]
 travis-ci = { repository = "lfairy/maud" }
 
diff --git a/maud/tests/warnings/warn_on_keyword_names.rs b/maud/tests/warnings/warn_on_keyword_names.rs
index a26c10f..fcdbc00 100644
--- a/maud/tests/warnings/warn_on_keyword_names.rs
+++ b/maud/tests/warnings/warn_on_keyword_names.rs
@@ -5,7 +5,7 @@ extern crate maud_macros;
 use maud_macros::html;
 
 fn main() {
-    let markup = html!{ 
+    html! {
         if {}
     };
 }