From 8bcf81886fb198f98fd5b7433b05810fe8d0530a Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 3 Oct 2015 23:17:15 +0000 Subject: [PATCH] test_symbol.rb: reduce iteration * test/ruby/test_symbol.rb (test_to_proc): reduce iteration count more. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_symbol.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb index 54d505a0d6..1df9f08b76 100644 --- a/test/ruby/test_symbol.rb +++ b/test/ruby/test_symbol.rb @@ -125,7 +125,7 @@ class TestSymbol < Test::Unit::TestCase assert_ruby_status([], <<-"end;", timeout: 5.0) GC.stress = true - 10.times {Proc.new(&:itself)} + 2.times {Proc.new(&:itself)} end; end