Commit 3d946a80 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #3240 from dabroz/feature-fixtest

test/assert.rb should not use puts
parents 570cbbdf 61705045
...@@ -213,7 +213,7 @@ def report() ...@@ -213,7 +213,7 @@ def report()
t_print("\n") t_print("\n")
$asserts.each do |msg| $asserts.each do |msg|
puts msg t_print "#{msg}\n"
end end
$total_test = $ok_test+$ko_test+$kill_test $total_test = $ok_test+$ko_test+$kill_test
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment