From 2939c2c0e011347d06ba3cc9dfe4ebe3b08f6799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 1 Mar 2019 13:19:47 -0500 Subject: [PATCH] Use the correct model in the test This was using a model without a default scope what made the test don't break anymore if the code is removed. --- activerecord/test/models/post.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb index a83ef983b8..53cbda83ed 100644 --- a/activerecord/test/models/post.rb +++ b/activerecord/test/models/post.rb @@ -78,7 +78,7 @@ class Post < ActiveRecord::Base has_many :comments_with_extend_2, extend: [NamedExtension, NamedExtension2], class_name: "Comment", foreign_key: "post_id" has_many :author_favorites, through: :author - has_many :author_favorites_with_scope, through: :author, class_name: "AuthorFavorite", source: "author_favorites" + has_many :author_favorites_with_scope, through: :author, class_name: "AuthorFavoriteWithScope", source: "author_favorites" has_many :author_categorizations, through: :author, source: :categorizations has_many :author_addresses, through: :author has_many :author_address_extra_with_address,