Merge branch 'develop' into 'cleanup/masto_fe-default_settings'
[akkoma] / test / user / notification_setting_test.exs
index 95bca22c41229042337c141e172475429a4ebf98..308da216a3a0fd97f1188751658df31bc2dc34af 100644 (file)
@@ -8,11 +8,11 @@ defmodule Pleroma.User.NotificationSettingTest do
   alias Pleroma.User.NotificationSetting
 
   describe "changeset/2" do
-    test "sets valid privacy option" do
+    test "sets option to hide notification contents" do
       changeset =
         NotificationSetting.changeset(
           %NotificationSetting{},
-          %{"privacy_option" => true}
+          %{"hide_notification_contents" => true}
         )
 
       assert %Ecto.Changeset{valid?: true} = changeset