diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-05 16:48:46 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-05 16:48:46 -0300 |
commit | e0a6ec214987882a47722e709a91b17b8395bec9 (patch) | |
tree | 12cbecb8d603f391e7adc53ae6dcc5193b9e7fe7 /activerecord/test | |
parent | ab2582f417008aba3b5b683da13df58e55f7d5cd (diff) | |
download | rails-e0a6ec214987882a47722e709a91b17b8395bec9.tar.gz rails-e0a6ec214987882a47722e709a91b17b8395bec9.tar.bz2 rails-e0a6ec214987882a47722e709a91b17b8395bec9.zip |
Fix test for Rubinius
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/associations/nested_through_associations_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/nested_through_associations_test.rb b/activerecord/test/cases/associations/nested_through_associations_test.rb index dd450a2a8e..80c6e41169 100644 --- a/activerecord/test/cases/associations/nested_through_associations_test.rb +++ b/activerecord/test/cases/associations/nested_through_associations_test.rb @@ -247,7 +247,7 @@ class NestedThroughAssociationsTest < ActiveRecord::TestCase def test_has_many_through_has_and_belongs_to_many_with_has_many_source_reflection_preload_via_joins assert_includes_and_joins_equal( - Category.where('comments.id' => comments(:more_greetings).id).order('comments.id'), + Category.where('comments.id' => comments(:more_greetings).id).order('categories.id'), [categories(:general), categories(:technology)], :post_comments ) end |