diff options
author | rinpatch <rinpatch@sdf.org> | 2019-09-16 13:23:06 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-09-16 13:23:06 +0300 |
commit | e8120944d8c016a1aa8fcefe34b1f0cc9089ea4f (patch) | |
tree | 1e7896722a10474b1fefb37979510387b8f52ec2 | |
parent | fe7fd331263007e0fb2877ef7370a09a9704da36 (diff) | |
download | pleroma-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.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"] }) ) |