Run cargo fmt --all

This commit is contained in:
Alex Crichton
2019-06-13 08:30:06 -07:00
parent 3aa803c55c
commit 83a3f5d44a
5 changed files with 58 additions and 45 deletions

View File

@ -71,7 +71,8 @@ fn rmain() -> Result<(), Error> {
// that any exported function with the prefix `__wbg_test` is a test we need
// to execute.
let wasm = fs::read(&wasm_file_to_test).context("failed to read wasm file")?;
let mut wasm = walrus::Module::from_buffer(&wasm).context("failed to deserialize wasm module")?;
let mut wasm =
walrus::Module::from_buffer(&wasm).context("failed to deserialize wasm module")?;
let mut tests = Vec::new();
for export in wasm.exports.iter() {