summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-07 15:41:57 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-07 15:41:57 +0000
commitd4397258e40bdeffa5b95781f04d197ae6b4944e (patch)
tree51f2c7ca35ee9f0bd86311d456df317ac9ac3e5e /test
parent4f66d02c979320656d4c75a302007170dd534bc2 (diff)
* test/ruby/test_array.rb
(TestArray#test_short_heap_array_sort_bang_memory_leak): seems to need more margin. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index c085031959..42476ace24 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -1447,7 +1447,7 @@ class TestArray < Test::Unit::TestCase
def test_short_heap_array_sort_bang_memory_leak
bug11332 = '[ruby-dev:49166] [Bug #11332]'
- assert_no_memory_leak([], <<-PREP, <<-TEST, bug11332, limit: 1.25, timeout: 60)
+ assert_no_memory_leak([], <<-PREP, <<-TEST, bug11332, limit: 1.3, timeout: 60)
def t; ary = [*1..5]; ary.pop(2); ary.sort!; end
1.times {t}
PREP