diff options
author | Zachary Scott <e@zzak.io> | 2014-05-26 20:19:37 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-05-26 20:19:37 -0700 |
commit | 0bdfb4d166f816b104494f0d1adae832aed0421b (patch) | |
tree | 8039d1030a80294828da74d458642a6bc0b5dfd3 | |
parent | 5eae77c44b951f7e0083eedb3f9f4f1d7c3dec3d (diff) | |
download | rails-0bdfb4d166f816b104494f0d1adae832aed0421b.tar.gz rails-0bdfb4d166f816b104494f0d1adae832aed0421b.tar.bz2 rails-0bdfb4d166f816b104494f0d1adae832aed0421b.zip |
Fix syntax error from 5eae77c
-rw-r--r-- | activerecord/test/cases/associations/eager_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb index 4e5d10118b..4bd4486b41 100644 --- a/activerecord/test/cases/associations/eager_test.rb +++ b/activerecord/test/cases/associations/eager_test.rb @@ -1167,7 +1167,7 @@ class EagerAssociationTest < ActiveRecord::TestCase ) end - test "deep preload" + test "deep preload" do post = Post.preload(author: :posts, comments: :post).first assert_predicate post.author.association(:posts), :loaded? |