summaryrefslogtreecommitdiff
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-06 16:49:01 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-06 16:49:01 +0000
commit73c0f4f754b19764f74938125de56627e73ff526 (patch)
tree77e905322341da0e9c4122e06ecfc92b41ccce49 /test/ruby/test_array.rb
parent62147303201cc094b5c8b4711ec18182f1536017 (diff)
* test/ruby/test_array.rb
(TestArray#test_short_heap_array_sort_bang_memory_leak): relax the threshold to get rid of a false positive failure of mswin CI. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_array.rb')
-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 5d451cdde9..c085031959 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.20, timeout: 60)
+ assert_no_memory_leak([], <<-PREP, <<-TEST, bug11332, limit: 1.25, timeout: 60)
def t; ary = [*1..5]; ary.pop(2); ary.sort!; end
1.times {t}
PREP