summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/transmogrifier/reject_handling_test.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-08-12 14:48:51 +0200
committerlain <lain@soykaf.club>2020-08-12 14:48:51 +0200
commit7224bf309ef38a80898d7e560e96fbc2895737be (patch)
treeec09708ef7520ca4de448f56404ada296113fed1 /test/web/activity_pub/transmogrifier/reject_handling_test.exs
parent62f7cca9a1e3f6c6685094eb3618876d4b6ca3a7 (diff)
downloadpleroma-7224bf309ef38a80898d7e560e96fbc2895737be.tar.gz
pleroma-7224bf309ef38a80898d7e560e96fbc2895737be.zip
Transmogrifier: Move Rejects to the Pipeline
Diffstat (limited to 'test/web/activity_pub/transmogrifier/reject_handling_test.exs')
-rw-r--r--test/web/activity_pub/transmogrifier/reject_handling_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/transmogrifier/reject_handling_test.exs b/test/web/activity_pub/transmogrifier/reject_handling_test.exs
index 5e5248641..7592fbe1c 100644
--- a/test/web/activity_pub/transmogrifier/reject_handling_test.exs
+++ b/test/web/activity_pub/transmogrifier/reject_handling_test.exs
@@ -24,7 +24,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier.RejectHandlingTest do
accept_data =
Map.put(accept_data, "object", Map.put(accept_data["object"], "actor", follower.ap_id))
- :error = Transmogrifier.handle_incoming(accept_data)
+ {:error, _} = Transmogrifier.handle_incoming(accept_data)
follower = User.get_cached_by_id(follower.id)