We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea36c1 commit ba43b95Copy full SHA for ba43b95
tests/cli_tests.rs
@@ -88,8 +88,8 @@ fn run_wasmtime_unreachable_wat() -> Result<()> {
88
let wasm = build_wasm("tests/wasm/unreachable.wat")?;
89
let output = run_wasmtime_for_output(&[wasm.path().to_str().unwrap(), "--disable-cache"])?;
90
91
- assert!(output.stdout.is_empty());
92
- assert!(!output.stderr.is_empty());
+ assert_ne!(output.stderr, b"");
+ assert_eq!(output.stdout, b"");
93
assert!(!output.status.success());
94
95
let code = output
0 commit comments