diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-07-18 11:03:56 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-07-18 11:03:56 -0500 |
commit | d06e0a3312d38e24533aeb90c233f77d7712c11b (patch) | |
tree | 6685db886151cdf6ebf73e0445027cb1b19d12e3 /test/pleroma/notification_test.exs | |
parent | f314726ea738287335b57cfa8a35c84c306c7ab0 (diff) | |
download | pleroma-poll-notification-fixes.tar.gz |
Poll notification: only notify local userspoll-notification-fixes
Diffstat (limited to 'test/pleroma/notification_test.exs')
-rw-r--r-- | test/pleroma/notification_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pleroma/notification_test.exs b/test/pleroma/notification_test.exs index 0d2cacb57..3810e772b 100644 --- a/test/pleroma/notification_test.exs +++ b/test/pleroma/notification_test.exs @@ -139,7 +139,7 @@ defmodule Pleroma.NotificationTest do {:ok, notifications} = Notification.create_poll_notifications(activity) - assert [user1.id, user3.id, user2.id] == Enum.map(notifications, & &1.user_id) + assert [user2.id, user3.id, user1.id] == Enum.map(notifications, & &1.user_id) end describe "CommonApi.post/2 notification-related functionality" do |