Skip to content

Commit

Permalink
Update crates/cli/src/benchmark.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Brown <[email protected]>
  • Loading branch information
jlb6740 and abrown committed Aug 28, 2024
1 parent daf22cd commit f726f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ impl BenchmarkCommand {
}
let mut stderr_expected = wasm_file_dir.join(format!("{}.stderr.expected", benchmark_name));
if !stderr_expected.exists() {
stderr_expected = wasm_file_dir.join(format!("{}.stderr.expected", "default"));
stderr_expected = wasm_file_dir.join("default.stderr.expected");
}

compare_output_file(wasm_file, stdout, &stdout_expected)?;
Expand Down

0 comments on commit f726f03

Please sign in to comment.