aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/associations_go_eager_test.rb2
-rw-r--r--activerecord/test/fixtures/post.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/associations_go_eager_test.rb b/activerecord/test/associations_go_eager_test.rb
index 8de37f3d92..20ea9656b8 100644
--- a/activerecord/test/associations_go_eager_test.rb
+++ b/activerecord/test/associations_go_eager_test.rb
@@ -25,7 +25,7 @@ class EagerAssociationTest < Test::Unit::TestCase
end
def test_loading_from_an_association
- posts = @david.posts.find(:all, :include => :comments)
+ posts = @david.posts.find(:all, :include => :comments, :order => "posts.id DESC")
assert_equal 2, posts.first.comments.size
end
diff --git a/activerecord/test/fixtures/post.rb b/activerecord/test/fixtures/post.rb
index ce9abcc693..bac0857e5f 100644
--- a/activerecord/test/fixtures/post.rb
+++ b/activerecord/test/fixtures/post.rb
@@ -1,6 +1,6 @@
class Post < ActiveRecord::Base
belongs_to :author
- has_many :comments
+ has_many :comments, :order => "body"
has_and_belongs_to_many :categories
end