From 001272fa7d84012e7ac6174ba32c2c19a41182d9 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 7 Nov 2019 16:28:57 -0800 Subject: [PATCH] rustfmt --- wasi-common/build.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wasi-common/build.rs b/wasi-common/build.rs index a66bb45b30..1858fc5c7f 100644 --- a/wasi-common/build.rs +++ b/wasi-common/build.rs @@ -133,7 +133,11 @@ mod wasm_tests { avoid_keywords(&stemstr.replace("-", "_")) )?; writeln!(out, " setup_log();")?; - write!(out, " let path = std::path::Path::new(r#\"{}\"#);", path.display())?; + write!( + out, + " let path = std::path::Path::new(r#\"{}\"#);", + path.display() + )?; writeln!(out, " let data = utils::read_wasm(path)?;")?; writeln!( out,