diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2022-04-25 12:39:36 +0200 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2022-04-25 14:08:31 +0200 |
commit | 9423052e9217aa1358950d37c5c96b11d554b37a (patch) | |
tree | e49a2c1252ee475783faa318d367f1b073740a70 /test | |
parent | 8517bc18aa0bb9d80b7601ac63573838e3252b21 (diff) | |
download | pleroma-9423052e9217aa1358950d37c5c96b11d554b37a.tar.gz pleroma-9423052e9217aa1358950d37c5c96b11d554b37a.zip |
Add "status" notification type
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/notification_test.exs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/pleroma/notification_test.exs b/test/pleroma/notification_test.exs index 805764ea4..eea2fcb67 100644 --- a/test/pleroma/notification_test.exs +++ b/test/pleroma/notification_test.exs @@ -104,6 +104,7 @@ defmodule Pleroma.NotificationTest do {:ok, [notification]} = Notification.create_notifications(status) assert notification.user_id == subscriber.id + assert notification.type == "status" end test "does not create a notification for subscribed users if status is a reply" do |