summaryrefslogtreecommitdiff
path: root/spec/controllers/profiles/notifications_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/profiles/notifications_controller_spec.rb')
-rw-r--r--spec/controllers/profiles/notifications_controller_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/controllers/profiles/notifications_controller_spec.rb b/spec/controllers/profiles/notifications_controller_spec.rb
index 55acc445e43..54324cece6c 100644
--- a/spec/controllers/profiles/notifications_controller_spec.rb
+++ b/spec/controllers/profiles/notifications_controller_spec.rb
@@ -16,10 +16,11 @@ describe Profiles::NotificationsController do
user = create_user
sign_in(user)
- put :update, user: { notification_email: 'new@example.com', admin: true }
+ put :update, user: { notification_email: 'new@example.com', notified_of_own_activity: true, admin: true }
user.reload
expect(user.notification_email).to eq('new@example.com')
+ expect(user.notified_of_own_activity).to eq(true)
expect(user.admin).to eq(false)
expect(controller).to set_flash[:notice].to('Notification settings saved')
end