diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-11 02:35:32 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-11 02:35:32 +0700 |
commit | 059005ff829c0313c62ddf5fbcd95f8892920228 (patch) | |
tree | 9c33d41fc3efe721f477aef7daa37b05ba812964 /test/support | |
parent | 2c7ff32e5b95926af9b6573a6dc6ea96e3ba7dd5 (diff) | |
download | pleroma-059005ff829c0313c62ddf5fbcd95f8892920228.tar.gz |
Replace `user.following` with Pleroma.FollowingRelationship
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/factory.ex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/support/factory.ex b/test/support/factory.ex index b180844cd..74f292a1d 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -39,8 +39,7 @@ defmodule Pleroma.Factory do user | ap_id: User.ap_id(user), follower_address: User.ap_followers(user), - following_address: User.ap_following(user), - following: [User.ap_id(user)] + following_address: User.ap_following(user) } end |