1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix test for Rubinius

This commit is contained in:
Santiago Pastorino 2011-08-05 16:48:46 -03:00
parent ab2582f417
commit e0a6ec2149

View file

@ -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