diff options
author | lain <lain@soykaf.club> | 2020-05-05 15:08:41 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-05 15:08:41 +0200 |
commit | a3071f023166cb5364ce56e3666d5a77baa16434 (patch) | |
tree | 8b9cdeba411e97c2f9d320eb230ca34017c38b79 /test/notification_test.exs | |
parent | f1da8882f971f932b65f655b6457759387dafe51 (diff) | |
download | pleroma-a3071f023166cb5364ce56e3666d5a77baa16434.tar.gz pleroma-a3071f023166cb5364ce56e3666d5a77baa16434.zip |
Undoing: Move undoing likes to the pipeline everywhere.
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 601a6c0ca..7d5b82993 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -724,7 +724,7 @@ defmodule Pleroma.NotificationTest do assert length(Notification.for_user(user)) == 1 - {:ok, _, _, _} = CommonAPI.unfavorite(activity.id, other_user) + {:ok, _} = CommonAPI.unfavorite(activity.id, other_user) assert Enum.empty?(Notification.for_user(user)) end |