diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/notification_test.exs | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/test/notification_test.exs b/test/notification_test.exs index fd59aceb5..a1a7cee2a 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -237,7 +237,9 @@ defmodule Pleroma.NotificationTest do        follower = insert(:user)        followed = -        insert(:user, notification_settings: %Pleroma.User.NotificationSetting{from_followers: false}) +        insert(:user, +          notification_settings: %Pleroma.User.NotificationSetting{from_followers: false} +        )        User.follow(follower, followed)        {:ok, activity} = CommonAPI.post(follower, %{status: "hey @#{followed.nickname}"}) @@ -258,7 +260,9 @@ defmodule Pleroma.NotificationTest do      test "it disables notifications from people the user follows" do        follower = -        insert(:user, notification_settings: %Pleroma.User.NotificationSetting{from_following: false}) +        insert(:user, +          notification_settings: %Pleroma.User.NotificationSetting{from_following: false} +        )        followed = insert(:user)        User.follow(follower, followed) | 
