diff options
| author | lain <lain@soykaf.club> | 2020-06-08 09:11:55 +0000 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-06-08 09:11:55 +0000 |
| commit | a1aa9fa91320d527e93435fe236534003cd85d31 (patch) | |
| tree | af6431405350fef893d0f903b47717a9866aa5a7 /test/tasks | |
| parent | d74985af2381b1c0dae2bc9c79c14582e5c61b97 (diff) | |
| parent | 167812a3f2c1470012cb161f3c5ba4c021fbad97 (diff) | |
| download | pleroma-a1aa9fa91320d527e93435fe236534003cd85d31.tar.gz pleroma-a1aa9fa91320d527e93435fe236534003cd85d31.zip | |
Merge branch 'activity-pub-use-atoms-as-keys' into 'develop'
Use atoms as keys in `ActivityPub.fetch_*` options
See merge request pleroma/pleroma!2629
Diffstat (limited to 'test/tasks')
| -rw-r--r-- | test/tasks/relay_test.exs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tasks/relay_test.exs b/test/tasks/relay_test.exs index 678288854..a8ba0658d 100644 --- a/test/tasks/relay_test.exs +++ b/test/tasks/relay_test.exs @@ -62,11 +62,11 @@ defmodule Mix.Tasks.Pleroma.RelayTest do [undo_activity] = ActivityPub.fetch_activities([], %{ - "type" => "Undo", - "actor_id" => follower_id, - "limit" => 1, - "skip_preload" => true, - "invisible_actors" => true + type: "Undo", + actor_id: follower_id, + limit: 1, + skip_preload: true, + invisible_actors: true }) assert undo_activity.data["type"] == "Undo" |
