Pass the models, not the ids, when dealing with friendships

This commit is contained in:
Andy Allan 2019-06-19 16:56:31 +02:00
parent 2169c503ef
commit d33b1f6b29
3 changed files with 3 additions and 3 deletions

View file

@ -1244,7 +1244,7 @@ class UsersControllerTest < ActionController::TestCase
# Get users to work with
user = create(:user)
friend = create(:user)
create(:friendship, :user_id => user.id, :friend_user_id => friend.id)
create(:friendship, :befriender => user, :befriendee => friend)
# Check that the users are friends
assert Friendship.where(:user_id => user.id, :friend_user_id => friend.id).first