summaryrefslogtreecommitdiff
path: root/spec/controllers
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-01 00:14:53 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-11-17 15:10:13 -0200
commit091efb315296306fd8c8d7c109ad6df77e7f28d5 (patch)
treeca78c1e5c9229eed679657cc26cfdfa0cb94c8c2 /spec/controllers
parent48d851d2015c3cb901498455862176eb15be3a0f (diff)
downloadgitlab-ce-091efb315296306fd8c8d7c109ad6df77e7f28d5.tar.gz
Fix specs to pass a project when creating subscriptions
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/sent_notifications_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/sent_notifications_controller_spec.rb b/spec/controllers/sent_notifications_controller_spec.rb
index 191e290a118..5ddfe84440e 100644
--- a/spec/controllers/sent_notifications_controller_spec.rb
+++ b/spec/controllers/sent_notifications_controller_spec.rb
@@ -7,7 +7,7 @@ describe SentNotificationsController, type: :controller do
let(:issue) do
create(:issue, project: project, author: user) do |issue|
- issue.subscriptions.create(user: user, subscribed: true)
+ issue.subscriptions.create(user: user, project: project, subscribed: true)
end
end
@@ -85,7 +85,7 @@ describe SentNotificationsController, type: :controller do
context 'when the force param is not passed' do
let(:merge_request) do
create(:merge_request, source_project: project, author: user) do |merge_request|
- merge_request.subscriptions.create(user: user, subscribed: true)
+ merge_request.subscriptions.create(user: user, project: project, subscribed: true)
end
end
let(:sent_notification) { create(:sent_notification, noteable: merge_request, recipient: user) }