diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-02-19 07:58:09 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-02-19 07:58:09 +0000 |
commit | c7f815eed897a8d78b19e041a569d2667a403f4a (patch) | |
tree | 90af8141d302f84fea9294733db66b5544062254 /test/ruby/test_const.rb | |
parent | 41f4317f45021460871bd11c666f438f5517904b (diff) | |
download | ruby-c7f815eed897a8d78b19e041a569d2667a403f4a.tar.gz |
test/ruby: suppress runtime warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_const.rb')
-rw-r--r-- | test/ruby/test_const.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_const.rb b/test/ruby/test_const.rb index 0b2c4497c6..ff83257c5a 100644 --- a/test/ruby/test_const.rb +++ b/test/ruby/test_const.rb @@ -37,7 +37,7 @@ class TestConst < Test::Unit::TestCase self.class.class_eval { include Const2 } - STDERR.print "intentionally redefines TEST3, TEST4\n" if $VERBOSE + # STDERR.print "intentionally redefines TEST3, TEST4\n" if $VERBOSE assert defined?(TEST1) assert_equal 1, TEST1 assert defined?(TEST2) |