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:
Diffstat (limited to 'spec/services/ci/web_hook_service_spec.rb')
-rw-r--r--spec/services/ci/web_hook_service_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/services/ci/web_hook_service_spec.rb b/spec/services/ci/web_hook_service_spec.rb
index 6f882e6fdad..d2f08959cb1 100644
--- a/spec/services/ci/web_hook_service_spec.rb
+++ b/spec/services/ci/web_hook_service_spec.rb
@@ -1,10 +1,10 @@
require 'spec_helper'
describe Ci::WebHookService do
- let (:project) { FactoryGirl.create :project }
- let (:commit) { FactoryGirl.create :commit, project: project }
- let (:build) { FactoryGirl.create :build, commit: commit }
- let (:hook) { FactoryGirl.create :web_hook, project: project }
+ let(:project) { FactoryGirl.create :project }
+ let(:commit) { FactoryGirl.create :commit, project: project }
+ let(:build) { FactoryGirl.create :build, commit: commit }
+ let(:hook) { FactoryGirl.create :web_hook, project: project }
describe :execute do
it "should execute successfully" do