diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-06-26 14:35:04 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-06-26 14:35:04 -0500 |
commit | ce85db41a30d95555bbd44d8931c4a3a357938d8 (patch) | |
tree | ea312a6fa3ba99a1bd16dc2c0b20dadb6bdcc34b | |
parent | 76313e81627f4563ba2d3bf9f7bb5e6b8a20975b (diff) | |
download | pleroma-ce85db41a30d95555bbd44d8931c4a3a357938d8.tar.gz |
Lint
-rw-r--r-- | test/web/push/impl_test.exs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/web/push/impl_test.exs b/test/web/push/impl_test.exs index 15de5e853..aeb5c1fbd 100644 --- a/test/web/push/impl_test.exs +++ b/test/web/push/impl_test.exs @@ -240,7 +240,9 @@ defmodule Pleroma.Web.Push.ImplTest do test "hides contents of notifications when option enabled" do user = insert(:user, nickname: "Bob") - user2 = insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: true}) + + user2 = + insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: true}) {:ok, activity} = CommonAPI.post(user, %{ @@ -286,7 +288,9 @@ defmodule Pleroma.Web.Push.ImplTest do test "returns regular content when hiding contents option disabled" do user = insert(:user, nickname: "Bob") - user2 = insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: false}) + + user2 = + insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: false}) {:ok, activity} = CommonAPI.post(user, %{ |