logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 4397a3fe4ac932a055901622b3c30a319997df6c
parent: fe7fd331263007e0fb2877ef7370a09a9704da36
Author: rinpatch <rinpatch@sdf.org>
Date:   Mon, 16 Sep 2019 10:34:03 +0000

Merge branch 'fix/signed-fetch-inclusion-test' into 'develop'

Fix signed fetch inclusion publisher test

See merge request pleroma/pleroma!1676

Diffstat:

Mtest/web/activity_pub/publisher_test.exs4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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"] }) )