diff options
author | lain <lain@soykaf.club> | 2020-05-08 10:41:41 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-08 10:41:41 +0000 |
commit | fbcc53760e6fcd393513c05a5bd7a4a6a6f3b731 (patch) | |
tree | 86b0bb94dcb176c1708d174a339223fb0fe34ec5 /test/notification_test.exs | |
parent | 0cf43391f272b2bb756b564e12bbcd3efda6a4bd (diff) | |
parent | 7e9aaa0d0221311d831161d977c8b0e2a55b3439 (diff) | |
download | pleroma-fbcc53760e6fcd393513c05a5bd7a4a6a6f3b731.tar.gz |
Merge branch 'feature/emojireactvalidator' into 'develop'
Move EmojiReacts to the Pipeline.
See merge request pleroma/pleroma!2473
Diffstat (limited to 'test/notification_test.exs')
-rw-r--r-- | test/notification_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs index 69f426e4d..0783c325d 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -24,7 +24,7 @@ defmodule Pleroma.NotificationTest do other_user = insert(:user) {:ok, activity} = CommonAPI.post(user, %{"status" => "yeah"}) - {:ok, activity, _object} = CommonAPI.react_with_emoji(activity.id, other_user, "☕") + {:ok, activity} = CommonAPI.react_with_emoji(activity.id, other_user, "☕") {:ok, [notification]} = Notification.create_notifications(activity) |