diff options
author | lain <lain@soykaf.club> | 2020-08-11 17:26:01 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-08-11 17:26:01 +0200 |
commit | f988d82e463d2c08fa2cc22dc6ee733ee8668671 (patch) | |
tree | 98c38ffb15a87e4a959eb99614f785fd26e8cfdb /test | |
parent | 9dda13bfa193be8ab5d9b2c117f7a50aaba451e1 (diff) | |
download | pleroma-f988d82e463d2c08fa2cc22dc6ee733ee8668671.tar.gz |
Transmogrifier: Handle accepts with the pipeline
Diffstat (limited to 'test')
-rw-r--r-- | test/web/activity_pub/transmogrifier/accept_handling_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/transmogrifier/accept_handling_test.exs b/test/web/activity_pub/transmogrifier/accept_handling_test.exs index bc4cc227d..77d468f5c 100644 --- a/test/web/activity_pub/transmogrifier/accept_handling_test.exs +++ b/test/web/activity_pub/transmogrifier/accept_handling_test.exs @@ -82,7 +82,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier.AcceptHandlingTest 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) |