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.
This commit is contained in:
Rafael Mendonça França 2019-03-01 13:19:47 -05:00
parent 6568d7da63
commit 2939c2c0e0
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
1 changed files with 1 additions and 1 deletions

View File

@ -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,