summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/activity_pub_controller_test.exs
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-02-11 13:54:21 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-02-11 13:54:21 +0700
commit305d2194136d4560e02c110d528164034d3727b2 (patch)
tree40510e1c4dc0140ff16e2fdc483da64c83b7077c /test/web/activity_pub/activity_pub_controller_test.exs
parent5b1d7c3c5672af065af503891d156b6e0cf5a8c1 (diff)
parent06c4935c11fc58f5ede18706bc46dcc502e64052 (diff)
downloadpleroma-305d2194136d4560e02c110d528164034d3727b2.tar.gz
pleroma-305d2194136d4560e02c110d528164034d3727b2.zip
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into feature/jobs
# Conflicts: # lib/pleroma/web/federator/federator.ex # lib/pleroma/web/websub/websub.ex
Diffstat (limited to 'test/web/activity_pub/activity_pub_controller_test.exs')
-rw-r--r--test/web/activity_pub/activity_pub_controller_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/activity_pub/activity_pub_controller_test.exs b/test/web/activity_pub/activity_pub_controller_test.exs
index 0a0103793..570bee6b3 100644
--- a/test/web/activity_pub/activity_pub_controller_test.exs
+++ b/test/web/activity_pub/activity_pub_controller_test.exs
@@ -441,8 +441,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
assert result["first"]["orderedItems"] == [user_two.ap_id]
end
- test "it returns returns empty if the user has 'hide_followings' set", %{conn: conn} do
- user = insert(:user, %{info: %{hide_followings: true}})
+ test "it returns returns empty if the user has 'hide_follows' set", %{conn: conn} do
+ user = insert(:user, %{info: %{hide_follows: true}})
user_two = insert(:user)
User.follow(user, user_two)