Skip to content
Snippets Groups Projects
Commit f3d4f2ea authored by Josh Frye's avatar Josh Frye
Browse files

Fix Rubocop error

parent c95bc655
No related branches found
No related tags found
No related merge requests found
require 'spec_helper'
 
describe Notes::CreateService, services: true do
describe Notes::PostProcessService, services: true do
let(:project) { create(:empty_project) }
let(:issue) { create(:issue, project: project) }
let(:user) { create(:user) }
Loading
Loading
@@ -17,10 +17,10 @@ describe Notes::CreateService, services: true do
@note = Notes::CreateService.new(project, user, note_opts).execute
end
 
it {
it do
expect(project).to receive(:execute_hooks)
expect(project).to receive(:execute_services)
Notes::PostProcessService.new(@note).execute
}
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment