summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/test/unit.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index e8afbbcaa2..e96ec558eb 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -725,7 +725,10 @@ module Test
@report_count ||= 0
report.each do |msg|
if msg.start_with? "Skipped:"
- next if @options[:hide_skip]
+ if @options[:hide_skip]
+ del_status_line
+ next
+ end
color = @skipped_color
else
color = @failed_color