summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-09-13 16:22:02 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-09-13 16:22:02 +0800
commit05faeec708824bf97c3114b23235859663631b27 (patch)
tree7b44ce638a9ec686cd0054544176e922e33add57
parent18d7ae43099040d21dddbb114761c34c833ec766 (diff)
downloadgitlab-ce-05faeec708824bf97c3114b23235859663631b27.tar.gz
Fix English
-rw-r--r--spec/models/ci/pipeline_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/models/ci/pipeline_spec.rb b/spec/models/ci/pipeline_spec.rb
index 5d9063c0bc5..f1857f846dc 100644
--- a/spec/models/ci/pipeline_spec.rb
+++ b/spec/models/ci/pipeline_spec.rb
@@ -398,7 +398,7 @@ describe Ci::Pipeline, models: true do
build_b.enqueue
end
- it 'receive a pending event once' do
+ it 'receives a pending event once' do
expect(WebMock).to have_requested_pipeline_hook('pending').once
end
end
@@ -411,7 +411,7 @@ describe Ci::Pipeline, models: true do
build_b.run
end
- it 'receive a running event once' do
+ it 'receives a running event once' do
expect(WebMock).to have_requested_pipeline_hook('running').once
end
end
@@ -422,7 +422,7 @@ describe Ci::Pipeline, models: true do
build_b.success
end
- it 'receive a success event once' do
+ it 'receives a success event once' do
expect(WebMock).to have_requested_pipeline_hook('success').once
end
end
@@ -432,7 +432,7 @@ describe Ci::Pipeline, models: true do
build_a.drop
end
- it 'receive a failed event once' do
+ it 'receives a failed event once' do
expect(WebMock).to have_requested_pipeline_hook('failed').once
end
end