summaryrefslogtreecommitdiff
path: root/tool/colorize.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-14 02:17:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-14 02:17:07 +0000
commit25aec0b8352428871b97de41f7da9abff1ab7d90 (patch)
treeac042667c7fe8aa3bdcb485ea7b9cfdd66ee3095 /tool/colorize.rb
parentfa302747428087961b55be91c9a7f00149654f49 (diff)
distinguish pass and fail by highlight [ci skip]
* tool/colorize.rb: remove highlight attribute from "pass" to make distinguishable from "fail" by other than red-green colors. * tool/ifchange: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/colorize.rb')
-rw-r--r--tool/colorize.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/colorize.rb b/tool/colorize.rb
index b840238e52..1cbbeef543 100644
--- a/tool/colorize.rb
+++ b/tool/colorize.rb
@@ -14,7 +14,7 @@ class Colorize
end
DEFAULTS = {
- "pass"=>"32;1", "fail"=>"31;1", "skip"=>"33;1",
+ "pass"=>"32", "fail"=>"31;1", "skip"=>"33;1",
"black"=>"30", "red"=>"31", "green"=>"32", "yellow"=>"33",
"blue"=>"34", "magenta"=>"35", "cyan"=>"36", "white"=>"37",
}