Skip to content

Commit

Permalink
debug assert failure
Browse files Browse the repository at this point in the history
  • Loading branch information
danleh committed Jul 27, 2024
1 parent ec53c78 commit 3777a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/test_utilities/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub fn wasm_validate(path: impl AsRef<Path>) -> Result<(), WasmValidateError> {
Ok(validate_output) => match validate_output.status.code() {
Some(0) => {
assert!(validate_output.stdout.is_empty());
assert!(validate_output.stderr.is_empty());
assert!(validate_output.stderr.is_empty(), "{}", String::from_utf8_lossy(&validate_output.stderr));
Ok(())
},
Some(status_code) => Err(WasmValidateError::InvalidWasmFile {
Expand Down

0 comments on commit 3777a39

Please sign in to comment.