diff options
author | Rafael Mendonça França <rafael.franca@plataformatec.com.br> | 2014-04-22 18:27:19 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafael.franca@plataformatec.com.br> | 2014-04-22 18:27:19 -0500 |
commit | 8116411abcb7dd887f06a1fe63885e105ea862e8 (patch) | |
tree | a76f7268a13a4bb1427d4b94a845dcbef9484196 /activerecord/test/cases | |
parent | 40335e73ccdd6b84f69a21cfa101b9abfa9c3447 (diff) | |
download | rails-8116411abcb7dd887f06a1fe63885e105ea862e8.tar.gz rails-8116411abcb7dd887f06a1fe63885e105ea862e8.tar.bz2 rails-8116411abcb7dd887f06a1fe63885e105ea862e8.zip |
Fix syntax error
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/has_many_through_associations_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb index e30577fb49..4755966259 100644 --- a/activerecord/test/cases/associations/has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb @@ -1116,6 +1116,7 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase club.reload assert_equal [member], club.favourites + end def test_has_many_through_unscope_default_scope post = Post.create!(:title => 'Beaches', :body => "I like beaches!") |