diff options
author | rinpatch <rinpatch@sdf.org> | 2019-09-16 10:34:03 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-09-16 10:34:03 +0000 |
commit | 4397a3fe4ac932a055901622b3c30a319997df6c (patch) | |
tree | 1e7896722a10474b1fefb37979510387b8f52ec2 | |
parent | fe7fd331263007e0fb2877ef7370a09a9704da36 (diff) | |
parent | e8120944d8c016a1aa8fcefe34b1f0cc9089ea4f (diff) | |
download | pleroma-4397a3fe4ac932a055901622b3c30a319997df6c.tar.gz |
Merge branch 'fix/signed-fetch-inclusion-test' into 'develop'
Fix signed fetch inclusion publisher test
See merge request pleroma/pleroma!1676
-rw-r--r-- | test/web/activity_pub/publisher_test.exs | 4 |
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"] }) ) |