1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
nobu 2015-10-03 23:17:15 +00:00
parent f1fbc6b8f6
commit 8bcf81886f

View file

@ -125,7 +125,7 @@ class TestSymbol < Test::Unit::TestCase
assert_ruby_status([], <<-"end;", timeout: 5.0) assert_ruby_status([], <<-"end;", timeout: 5.0)
GC.stress = true GC.stress = true
10.times {Proc.new(&:itself)} 2.times {Proc.new(&:itself)}
end; end;
end end