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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-07 06:09:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-07 06:09:15 +0300
commit7ba5b9babaa5802c39e686c57cbf4a3f4725c4b0 (patch)
tree03a696c26f32e46faa46dd12d0a937d1d0d1cba4 /spec/features/snippets
parentb56027c9d80ac0e297ba8a43c81e8504172dbf9f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/snippets')
-rw-r--r--spec/features/snippets/spam_snippets_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/snippets/spam_snippets_spec.rb b/spec/features/snippets/spam_snippets_spec.rb
index efe1bdc963d..e9534dedcd3 100644
--- a/spec/features/snippets/spam_snippets_spec.rb
+++ b/spec/features/snippets/spam_snippets_spec.rb
@@ -52,7 +52,7 @@ shared_examples_for 'snippet editor' do
end
end
- context 'when identified as a spam' do
+ context 'when identified as spam' do
before do
WebMock.stub_request(:any, /.*akismet.com.*/).to_return(body: "true", status: 200)
end
@@ -66,7 +66,7 @@ shared_examples_for 'snippet editor' do
end
end
- context 'when not identified as a spam' do
+ context 'when not identified as spam' do
before do
WebMock.stub_request(:any, /.*akismet.com.*/).to_return(body: "false", status: 200)
end