aboutsummaryrefslogtreecommitdiffstats
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
commiteaf7266dff97a0a6abf66b19c8a1b84144a0fbca (patch)
treead3d7b6732308a8c067bdf0074d161e578492bd6 /test
parentb8e16ebd686604c4ea9a513518ff09f63262bb1d (diff)
downloadruby-eaf7266dff97a0a6abf66b19c8a1b84144a0fbca.tar.gz
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