From 5a02ee2bd8bbaffde71da39de850ed8ea5e66dbc Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Thu, 23 Feb 2006 05:48:29 +0000 Subject: [PATCH] fix test for postgresql git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3640 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/modules_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/test/modules_test.rb b/activerecord/test/modules_test.rb index 5c3cc1906e..6f919bbd78 100644 --- a/activerecord/test/modules_test.rb +++ b/activerecord/test/modules_test.rb @@ -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 -- GitLab