Skip to content

Commit

Permalink
suggested improvement to 'ignored' message
Browse files Browse the repository at this point in the history
  • Loading branch information
thor314 committed Feb 4, 2024
1 parent 5a4d488 commit 9532cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ impl SpawnStatus {
let palette = snapbox::report::Palette::color();
match self {
Self::Ok => palette.info("ok"),
Self::Skipped => palette.warn("ignored"),
Self::Skipped => palette.warn("ignored, check if binary is correctly named"),
Self::Failure(_) | Self::Expected(_) => palette.error("failed"),
}
}
Expand Down

0 comments on commit 9532cea

Please sign in to comment.