summaryrefslogtreecommitdiff
path: root/test/web/push/impl_test.exs
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-07-15 13:34:27 -0500
committerMark Felder <feld@FreeBSD.org>2020-07-15 13:34:27 -0500
commitb2d398b1d04cd2c258e830e3bb5c49c8b294d139 (patch)
treec9cd8e48813bdab768f216b4fb06528f6869d626 /test/web/push/impl_test.exs
parent7115c5f82efe1ca1817da3152ba3cbc66e0da1a4 (diff)
parent00f9b53f07346d052adab105bde3428c98fc4660 (diff)
downloadpleroma-b2d398b1d04cd2c258e830e3bb5c49c8b294d139.tar.gz
pleroma-b2d398b1d04cd2c258e830e3bb5c49c8b294d139.zip
Merge branch 'develop' into refactor/gun-pool-registry
Diffstat (limited to 'test/web/push/impl_test.exs')
-rw-r--r--test/web/push/impl_test.exs12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/web/push/impl_test.exs b/test/web/push/impl_test.exs
index b48952b29..aeb5c1fbd 100644
--- a/test/web/push/impl_test.exs
+++ b/test/web/push/impl_test.exs
@@ -238,9 +238,11 @@ defmodule Pleroma.Web.Push.ImplTest do
}
end
- test "hides details for notifications when privacy option enabled" do
+ test "hides contents of notifications when option enabled" do
user = insert(:user, nickname: "Bob")
- user2 = insert(:user, nickname: "Rob", notification_settings: %{privacy_option: true})
+
+ user2 =
+ insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: true})
{:ok, activity} =
CommonAPI.post(user, %{
@@ -284,9 +286,11 @@ defmodule Pleroma.Web.Push.ImplTest do
}
end
- test "returns regular content for notifications with privacy option disabled" do
+ test "returns regular content when hiding contents option disabled" do
user = insert(:user, nickname: "Bob")
- user2 = insert(:user, nickname: "Rob", notification_settings: %{privacy_option: false})
+
+ user2 =
+ insert(:user, nickname: "Rob", notification_settings: %{hide_notification_contents: false})
{:ok, activity} =
CommonAPI.post(user, %{