diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-06-28 14:41:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-28 14:41:59 -0400 |
commit | 33de72667a026f8a9c188189bcc191976a7c397a (patch) | |
tree | c3f33e633acb9f8caa2c2cf06f966ab89e3952b7 /activerecord/test/cases/associations | |
parent | f94b2e850330ae9b69c874d1fad8a4a38d736d36 (diff) | |
parent | eacec5defe89dd9593d44f4831aa861a2e0e55d4 (diff) | |
download | rails-33de72667a026f8a9c188189bcc191976a7c397a.tar.gz rails-33de72667a026f8a9c188189bcc191976a7c397a.tar.bz2 rails-33de72667a026f8a9c188189bcc191976a7c397a.zip |
Merge pull request #29610 from kamipo/dont_passing_klass_connection_to_association_scope
Don't passing `klass.connection` to `AssociationScope`
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/association_scope_test.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations/association_scope_test.rb b/activerecord/test/cases/associations/association_scope_test.rb index c322333f6d..c54542ff7b 100644 --- a/activerecord/test/cases/associations/association_scope_test.rb +++ b/activerecord/test/cases/associations/association_scope_test.rb @@ -6,8 +6,7 @@ module ActiveRecord module Associations class AssociationScopeTest < ActiveRecord::TestCase test "does not duplicate conditions" do - scope = AssociationScope.scope(Author.new.association(:welcome_posts), - Author.connection) + scope = AssociationScope.scope(Author.new.association(:welcome_posts)) binds = scope.where_clause.binds.map(&:value) assert_equal binds.uniq, binds end |