Skip to content

Commit

Permalink
Make skipped indicator clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
molovo committed Mar 1, 2017
1 parent 90b324f commit 55c35c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/run.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function _zunit_output_results() {
echo "$(color green '') Passed $passed "
echo "$(color red '') Failed $failed "
echo "$(color red '') Errors $errors "
echo "$(color magenta '') Skipped $skipped "
echo "$(color magenta '') Skipped $skipped "
echo "$(color yellow '') Warnings $warnings "
echo

Expand Down
2 changes: 1 addition & 1 deletion src/events.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ function _zunit_skip() {
return
fi

echo "$(color magenta '') Skipped: ${name}"
echo "$(color magenta '') Skipped: ${name}"
echo " \033[0;38;5;242m# ${message}\033[0;m"
}

0 comments on commit 55c35c7

Please sign in to comment.