Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Chao <mchao@gitlab.com>2018-10-25 16:48:03 +0300
committerMark Chao <mchao@gitlab.com>2018-11-07 06:33:02 +0300
commitd52af8b1c2041ecd4219f0ad320208afe3ebad16 (patch)
tree0fa8ea269955e345c503b142d97206f6d8939d2d /spec/services/notes/quick_actions_service_spec.rb
parent67b579c54e77a28db2736401e698f609a713d0f3 (diff)
Fix spec in EE which now trigger access to repository
Diffstat (limited to 'spec/services/notes/quick_actions_service_spec.rb')
-rw-r--r--spec/services/notes/quick_actions_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/notes/quick_actions_service_spec.rb b/spec/services/notes/quick_actions_service_spec.rb
index a8c994c101c..14d62763a5b 100644
--- a/spec/services/notes/quick_actions_service_spec.rb
+++ b/spec/services/notes/quick_actions_service_spec.rb
@@ -2,7 +2,7 @@ require 'spec_helper'
describe Notes::QuickActionsService do
shared_context 'note on noteable' do
- let(:project) { create(:project) }
+ let(:project) { create(:project, :repository) }
let(:maintainer) { create(:user).tap { |u| project.add_maintainer(u) } }
let(:assignee) { create(:user) }