aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-09-16 13:23:06 +0300
committerrinpatch <rinpatch@sdf.org>2019-09-16 13:23:06 +0300
commite8120944d8c016a1aa8fcefe34b1f0cc9089ea4f (patch)
tree1e7896722a10474b1fefb37979510387b8f52ec2
parentfe7fd331263007e0fb2877ef7370a09a9704da36 (diff)
downloadpleroma-e8120944d8c016a1aa8fcefe34b1f0cc9089ea4f.tar.gz
Fix signed fetch inclusion publisher test
Oban branch changed `actor` to `actor_id` and this test was not adjusted for that
-rw-r--r--test/web/activity_pub/publisher_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/activity_pub/publisher_test.exs b/test/web/activity_pub/publisher_test.exs
index c7d1d05aa..df03b4008 100644
--- a/test/web/activity_pub/publisher_test.exs
+++ b/test/web/activity_pub/publisher_test.exs
@@ -321,7 +321,7 @@ defmodule Pleroma.Web.ActivityPub.PublisherTest do
assert called(
Pleroma.Web.Federator.Publisher.enqueue_one(Publisher, %{
inbox: "https://domain.com/users/nick1/inbox",
- actor: actor,
+ actor_id: actor.id,
id: delete.data["id"]
})
)
@@ -329,7 +329,7 @@ defmodule Pleroma.Web.ActivityPub.PublisherTest do
assert called(
Pleroma.Web.Federator.Publisher.enqueue_one(Publisher, %{
inbox: "https://domain2.com/users/nick1/inbox",
- actor: actor,
+ actor_id: actor.id,
id: delete.data["id"]
})
)