test_method.rb: reduce iteration

* test/ruby/test_method.rb (TestMethod#test_bound_method_entry):
  reduce iteration.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-03-05 12:30:27 +00:00
Родитель 2ff56cc9b4
Коммит 00a8203b0b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -511,7 +511,7 @@ class TestMethod < Test::Unit::TestCase
define_singleton_method(:reverse, target.method(:reverse).to_proc)
end
end
1000.times {p = Bug6171.new('test'); 10000.times {p.reverse}}
100.times {p = Bug6171.new('test'); 1000.times {p.reverse}}
EOC
end