aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_symbol.rb
diff options
context:
space:
mode:
authorodaira <odaira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-02 22:53:02 +0000
committerodaira <odaira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-02 22:53:02 +0000
commit120518576e21fc9597087f9ef756ccb8517ec4ac (patch)
tree28ece0932d20a0a4457253ee1b9a10dd98e0c930 /test/ruby/test_symbol.rb
parentae048b1b7c0b1e632d97c448518932dc53f8cae6 (diff)
downloadruby-120518576e21fc9597087f9ef756ccb8517ec4ac.tar.gz
* test/ruby/test_symbol.rb: avoid a false positive in AIX
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49813 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 596f2b09f6..bfdfe5245b 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -234,7 +234,7 @@ class TestSymbol < Test::Unit::TestCase
def test_symbol_fstr_leak
bug10686 = '[ruby-core:67268] [Bug #10686]'
x = 0
- assert_no_memory_leak([], '', <<-"end;", bug10686, limit: 1.65)
+ assert_no_memory_leak([], '', <<-"end;", bug10686, limit: 1.71)
200_000.times { |i| i.to_s.to_sym }
end;
end