Merge pull request #2272 from cesario/fix_relations_test

Simplify the test by using id and name.
This commit is contained in:
Santiago Pastorino
2011-07-26 06:25:05 -07:00

View File

@@ -963,6 +963,6 @@ class RelationTest < ActiveRecord::TestCase
end
def test_ordering_with_extra_spaces
assert_equal authors(:david), Author.order('organization_id ASC , owned_essay_id DESC').last
assert_equal authors(:david), Author.order('id DESC , name DESC').last
end
end