Rename user.friend_users to user.friends

This is possible now since we've renamed Friend to Friendship
This commit is contained in:
Andy Allan 2019-06-19 16:51:35 +02:00
parent 1cf8fec58d
commit 2169c503ef
6 changed files with 10 additions and 10 deletions

View file

@ -147,7 +147,7 @@ class ChangesetsControllerTest < ActionController::TestCase
assert_response :success
assert_template "index"
check_index_result(Changeset.where(:user => private_user.friend_users.identifiable))
check_index_result(Changeset.where(:user => private_user.friends.identifiable))
end
##