Skip to content

Commit

Permalink
another minor fix, but overall happy
Browse files Browse the repository at this point in the history
  • Loading branch information
danleh committed Jul 27, 2024
1 parent 4dd5b81 commit f78e85e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/test_utilities/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ impl fmt::Display for WasmValidateError {
writeln!(f, "invalid Wasm file {input_file}")?;
writeln!(f, "\twasm-validate status code: {status_code}")?;
writeln!(f, "\tstdout: {}", stdout.trim())?;
writeln!(f, "\tstderr: {}", stderr.trim())
write!(f, "\tstderr: {}", stderr.trim())
}
WasmValidateError::CouldNotValidate { input_file, error } => {
writeln!(f, "could not validate Wasm file {input_file}")?;
writeln!(f, "\tpossibly crash\n\t{}", error.trim())
write!(f, "\t{}", error.trim())
}
}
}
Expand Down

0 comments on commit f78e85e

Please sign in to comment.