summaryrefslogtreecommitdiff
path: root/test/web/mastodon_api/controllers/account_controller_test.exs
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-12-06 00:12:21 +0300
committerrinpatch <rinpatch@sdf.org>2019-12-06 00:12:21 +0300
commitcdff5b82670313e46c2b362d4cf041779af6a6bd (patch)
treeedc39a1b48f48334480e709fbda844cb120b32f8 /test/web/mastodon_api/controllers/account_controller_test.exs
parent9f99640cfc81f28c0b6cdb5f6ef065b3e46f5f23 (diff)
parent67d8df04a440ec9b2949bdddd3a3d8dd70c9b140 (diff)
downloadpleroma-cdff5b82670313e46c2b362d4cf041779af6a6bd.tar.gz
pleroma-cdff5b82670313e46c2b362d4cf041779af6a6bd.zip
Merge branch 'develop' into fix/mrf-delete
Diffstat (limited to 'test/web/mastodon_api/controllers/account_controller_test.exs')
-rw-r--r--test/web/mastodon_api/controllers/account_controller_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/mastodon_api/controllers/account_controller_test.exs b/test/web/mastodon_api/controllers/account_controller_test.exs
index 585cb8a9e..444693404 100644
--- a/test/web/mastodon_api/controllers/account_controller_test.exs
+++ b/test/web/mastodon_api/controllers/account_controller_test.exs
@@ -891,7 +891,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
user = insert(:user)
other_user = insert(:user)
- {:ok, user} = User.mute(user, other_user)
+ {:ok, _user_relationships} = User.mute(user, other_user)
conn =
conn
@@ -906,7 +906,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
user = insert(:user)
other_user = insert(:user)
- {:ok, user} = User.block(user, other_user)
+ {:ok, _user_relationship} = User.block(user, other_user)
conn =
conn