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,