summaryrefslogtreecommitdiff
path: root/test/web/activity_pub
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-03-22 16:51:20 +0100
committerRoger Braun <roger@rogerbraun.net>2017-03-22 16:51:20 +0100
commit37e443ce6c4d263f7febd7e0723be9a3a2c9ed1d (patch)
tree1a2a466fb482e5bc53672837ceee3c08cb28df4d /test/web/activity_pub
parent569d9bac178f22e763afc9db5000415bebf70304 (diff)
downloadpleroma-37e443ce6c4d263f7febd7e0723be9a3a2c9ed1d.tar.gz
pleroma-37e443ce6c4d263f7febd7e0723be9a3a2c9ed1d.zip
Add friends status fetching.
Diffstat (limited to 'test/web/activity_pub')
-rw-r--r--test/web/activity_pub/activity_pub_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs
index 754bd72f3..d220f91c3 100644
--- a/test/web/activity_pub/activity_pub_test.exs
+++ b/test/web/activity_pub/activity_pub_test.exs
@@ -20,7 +20,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
test "retrieve the activities for certain recipients" do
{:ok, activity_one} = ActivityBuilder.insert(%{"to" => ["someone"]})
{:ok, activity_two} = ActivityBuilder.insert(%{"to" => ["someone_else"]})
- {:ok, activity_three} = ActivityBuilder.insert(%{"to" => ["noone"]})
+ {:ok, _activity_three} = ActivityBuilder.insert(%{"to" => ["noone"]})
activities = ActivityPub.fetch_activities(["someone", "someone_else"])
assert length(activities) == 2