summaryrefslogtreecommitdiff
path: root/test/web/mastodon_api/controllers/account_controller_test.exs
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-10-11 02:35:32 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-10-11 02:35:32 +0700
commit059005ff829c0313c62ddf5fbcd95f8892920228 (patch)
tree9c33d41fc3efe721f477aef7daa37b05ba812964 /test/web/mastodon_api/controllers/account_controller_test.exs
parent2c7ff32e5b95926af9b6573a6dc6ea96e3ba7dd5 (diff)
downloadpleroma-059005ff829c0313c62ddf5fbcd95f8892920228.tar.gz
pleroma-059005ff829c0313c62ddf5fbcd95f8892920228.zip
Replace `user.following` with Pleroma.FollowingRelationship
Diffstat (limited to 'test/web/mastodon_api/controllers/account_controller_test.exs')
-rw-r--r--test/web/mastodon_api/controllers/account_controller_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/mastodon_api/controllers/account_controller_test.exs b/test/web/mastodon_api/controllers/account_controller_test.exs
index 6a59c3d94..a398ef76a 100644
--- a/test/web/mastodon_api/controllers/account_controller_test.exs
+++ b/test/web/mastodon_api/controllers/account_controller_test.exs
@@ -457,7 +457,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
conn =
build_conn()
- |> assign(:user, follower)
+ |> assign(:user, User.get_cached_by_id(follower.id))
|> post("/api/v1/accounts/#{followed.id}/follow?reblogs=true")
assert %{"showing_reblogs" => true} = json_response(conn, 200)