diff options
author | Rocky Jaiswal <rocky.jaiswal@gmail.com> | 2011-09-28 11:57:34 +0530 |
---|---|---|
committer | Rocky Jaiswal <rocky.jaiswal@gmail.com> | 2011-09-28 11:57:34 +0530 |
commit | aefc40324df3c98a278f05eee4980845fbeedbef (patch) | |
tree | 501f1e40b905e761c189241ed9286146ad172463 /activerecord | |
parent | 771b76a3dc75075b3cb777da96c11aa73425dbf6 (diff) | |
download | rails-aefc40324df3c98a278f05eee4980845fbeedbef.tar.gz rails-aefc40324df3c98a278f05eee4980845fbeedbef.tar.bz2 rails-aefc40324df3c98a278f05eee4980845fbeedbef.zip |
Fixed failed test under 1.8.7 as map.keys order in indeterminable
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb | 2 | ||||
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb index d1d02c25d5..34d90cc395 100644 --- a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb @@ -651,7 +651,7 @@ class HasAndBelongsToManyAssociationsTest < ActiveRecord::TestCase end def test_habtm_selects_all_columns_by_default - assert_equal Project.column_names, developers(:david).projects.first.attributes.keys + assert_equal Project.column_names.sort, developers(:david).projects.first.attributes.keys.sort end def test_habtm_respects_select_query_method diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index fdfbcbefac..cddd2a6f8c 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -486,7 +486,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase end def test_default_select - assert_equal Comment.column_names, posts(:welcome).comments.first.attributes.keys + assert_equal Comment.column_names.sort, posts(:welcome).comments.first.attributes.keys.sort end def test_select_query_method |