From 03e97f68c6eea84080263c139add33abd2c5567d Mon Sep 17 00:00:00 2001 From: akira Date: Fri, 19 Dec 2003 10:24:24 +0000 Subject: * lib/runit/cui/testrunner.rb (RUNIT::CUI::TestRunner::run): should use Test::Unit::UI::{PROGRESS_ONLY,VERBOSE}. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/runit/cui/testrunner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/runit/cui/testrunner.rb b/lib/runit/cui/testrunner.rb index 0106b6c85..d521ec16a 100644 --- a/lib/runit/cui/testrunner.rb +++ b/lib/runit/cui/testrunner.rb @@ -23,7 +23,7 @@ module RUNIT def @suite.suite self end - @output_level = (quiet_mode ? PROGRESS_ONLY : NORMAL) + @output_level = (quiet_mode ? Test::Unit::UI::PROGRESS_ONLY : Test::Unit::UI::VERBOSE) start end -- cgit