aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_method.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-05 12:30:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-05 12:30:27 +0000
commit00a8203b0b31ba2063f4344418331af2dbed7db3 (patch)
tree29fd03f6dba795cf6d6d5e1fa3b0c2a3e17ed056 /test/ruby/test_method.rb
parent2ff56cc9b4dd3566277d2201774f80fef9aefdde (diff)
downloadruby-00a8203b0b31ba2063f4344418331af2dbed7db3.tar.gz
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
Diffstat (limited to 'test/ruby/test_method.rb')
-rw-r--r--test/ruby/test_method.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index ef4943c345..ea81fdb83a 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -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