diff options
author | Roger Braun <roger@rogerbraun.net> | 2018-01-30 12:20:14 +0100 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2018-01-30 12:20:14 +0100 |
commit | 450109460674d914171bd1a1516a2c5faf355a7c (patch) | |
tree | 6d5b640e22f375968d9e806d8878fc9f8a5007d8 | |
parent | 1bb3ba02f398ff5ab94a8ddcc038db20b6474c0e (diff) | |
download | pleroma-450109460674d914171bd1a1516a2c5faf355a7c.tar.gz pleroma-450109460674d914171bd1a1516a2c5faf355a7c.zip |
Make specs less breaky.
-rw-r--r-- | test/notification_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs index eee1c9fa3..0a4462241 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -14,9 +14,9 @@ defmodule Pleroma.NotificationTest do {:ok, [notification, other_notification]} = Notification.create_notifications(activity) - assert notification.user_id == other_user.id + notified_ids = Enum.sort([notification.user_id, other_notification.user_id]) + assert notified_ids == [other_user.id, third_user.id] assert notification.activity_id == activity.id - assert other_notification.user_id == third_user.id assert other_notification.activity_id == activity.id end end |