Skip to content

Commit

Permalink
Better test error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Nov 5, 2024
1 parent 4f80bb1 commit 5b11cae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/quick.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ fn run_test(compressed: &str, expected: &[u8]) {
.unwrap();
assert!(
output.status.success(),
"{:?}",
"status: {:?} stderr: {:?}",
output.status,
String::from_utf8_lossy(&output.stderr)
);
assert_eq!(output.stdout, expected);
Expand Down

0 comments on commit 5b11cae

Please sign in to comment.