From e8950106c92236216d5d819ba6c4db2b9423eddd Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 12 Oct 2016 15:39:10 +0000 Subject: test_array.rb: do not assume stable sort * test/ruby/test_array.rb (test_sort_bang_with_freeze): make a clone to copy a <=> singleton method, instead of dup. which element will be called is not predictable. [ruby-core:76088] [Bug #12509] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56410 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index a19e22aab4..bdb603bec5 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1488,7 +1488,7 @@ class TestArray < Test::Unit::TestCase 1 } } - o2 = o1.dup + o2 = o1.clone ary << o1 << o2 orig = ary.dup assert_raise(RuntimeError, "frozen during comparison") {ary.sort!} -- cgit v1.2.3