Skip to content

Commit

Permalink
Merge #475
Browse files Browse the repository at this point in the history
475: `xtask`: Pretty-print `all_errors` r=Urhengulas a=Urhengulas

bors r+

Co-authored-by: Johann Hemmann <[email protected]>
  • Loading branch information
bors[bot] and Urhengulas authored May 14, 2021
2 parents dd12af5 + 6f0a7bb commit 1ba8f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn main() -> anyhow::Result<()> {
let all_errors = ALL_ERRORS.lock().unwrap();
if !all_errors.is_empty() {
eprintln!();
Err(anyhow!("😔 some tests failed: {:?}", all_errors))
Err(anyhow!("😔 some tests failed: {:#?}", all_errors))
} else {
Ok(())
}
Expand Down

0 comments on commit 1ba8f9b

Please sign in to comment.