fix test for postgresql

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3640 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-02-23 05:48:29 +00:00
parent e9d4b367cc
commit 5a02ee2bd8

@ -18,7 +18,7 @@ def test_module_spanning_has_and_belongs_to_many_associations
end
def test_associations_spanning_cross_modules
account = MyApplication::Billing::Account.find(:first)
account = MyApplication::Billing::Account.find(:first, :order => 'id')
assert_kind_of MyApplication::Business::Firm, account.firm
assert_kind_of MyApplication::Billing::Firm, account.qualified_billing_firm
assert_kind_of MyApplication::Billing::Firm, account.unqualified_billing_firm