From 91f209816f88288c6efacac783224bd3c9c56cd6 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 4 Aug 2015 07:41:32 +0000 Subject: * test/ruby/test_module.rb: should not expect a method table ordering. [Feature #11414] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 812b7f6a31..18db88f04a 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -1114,13 +1114,13 @@ class TestModule < Test::Unit::TestCase assert_equal [:f], memo.shift, '[ruby-core:25536]' assert_equal mod.instance_method(:f), memo.shift assert_equal :g, memo.shift - assert_equal [:f, :g], memo.shift + assert_equal [:f, :g].sort, memo.shift.sort assert_equal mod.instance_method(:f), memo.shift assert_equal :a, memo.shift - assert_equal [:f, :g, :a], memo.shift + assert_equal [:f, :g, :a].sort, memo.shift.sort assert_equal mod.instance_method(:a), memo.shift assert_equal :a=, memo.shift - assert_equal [:f, :g, :a, :a=], memo.shift + assert_equal [:f, :g, :a, :a=].sort, memo.shift.sort assert_equal mod.instance_method(:a=), memo.shift end -- cgit v1.2.3