projects
/
akkoma
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe7fd33
)
Fix signed fetch inclusion publisher test
author
rinpatch
<rinpatch@sdf.org>
Mon, 16 Sep 2019 10:23:06 +0000
(13:23 +0300)
committer
rinpatch
<rinpatch@sdf.org>
Mon, 16 Sep 2019 10:23:06 +0000
(13:23 +0300)
Oban branch changed `actor` to `actor_id` and this test was not adjusted for that
test/web/activity_pub/publisher_test.exs
patch
|
blob
|
history
diff --git
a/test/web/activity_pub/publisher_test.exs
b/test/web/activity_pub/publisher_test.exs
index c7d1d05aaa1a2eafd134525cbfad7ea81c0b2267..df03b40087aa708036eb6568f2a58522b899e150 100644
(file)
--- 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"]
})
)