Skip to content

Commit

Permalink
fix: attempt to make skipped symbol obvious under slack
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian May committed Sep 5, 2024
1 parent ef32376 commit 9e8d6a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/output/slack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Display for Status {
Status::Pending => '⚙',
Status::InProgress => '☐',
Status::Complete => '✅',
Status::Skipped => '𝄩',
Status::Skipped => '',
Status::Failed => '❌',
};
f.write_char(char)
Expand Down
2 changes: 1 addition & 1 deletion src/output/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Display for Status {
Status::Pending => '⚙',
Status::InProgress => '☐',
Status::Complete => '✅',
Status::Skipped => '𝄩',
Status::Skipped => '',
Status::Failed => '❌',
};
f.write_char(char)
Expand Down

0 comments on commit 9e8d6a0

Please sign in to comment.