summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-03 23:17:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-03 23:17:15 +0000
commit8bcf81886fb198f98fd5b7433b05810fe8d0530a (patch)
treead3d7b6732308a8c067bdf0074d161e578492bd6 /test
parentf1fbc6b8f6a074d1a4a8e50630df901fbc8075f8 (diff)
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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_symbol.rb2
1 files changed, 1 insertions, 1 deletions
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