summaryrefslogtreecommitdiff
path: root/test/ruby/test_symbol.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 03:35:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 03:35:58 +0000
commit8d19c41429782a0a977a7cf243616eb5b8ef50a7 (patch)
tree8bc62d8d8397de12140c3e6e8a180806b03cba11 /test/ruby/test_symbol.rb
parent44d56b6780211733369d331a4dbe584cf49c2585 (diff)
test_symbol.rb: reduce iteration
* test/ruby/test_symbol.rb (test_to_proc): reduce iteration count. actually it reproduced in 2 times. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_symbol.rb')
-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 50e39ac482..54d505a0d6 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
- 100.times {Proc.new(&:itself)}
+ 10.times {Proc.new(&:itself)}
end;
end