summaryrefslogtreecommitdiff
path: root/spec/features/instance_statistics
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-04 15:11:23 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-04 15:11:23 +0000
commit8d3aee3636da5181ae94d23b47c6794b5610ab01 (patch)
tree73236b3e4b5d103c926df08449b2071ec19e4d18 /spec/features/instance_statistics
parent98420be3dddf5a093c39d96a8ca109aa21d0eaf8 (diff)
downloadgitlab-ce-8d3aee3636da5181ae94d23b47c6794b5610ab01.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/instance_statistics')
-rw-r--r--spec/features/instance_statistics/dev_ops_score_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/instance_statistics/dev_ops_score_spec.rb b/spec/features/instance_statistics/dev_ops_score_spec.rb
index c9e6ab67267..453b5582f48 100644
--- a/spec/features/instance_statistics/dev_ops_score_spec.rb
+++ b/spec/features/instance_statistics/dev_ops_score_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-describe 'Dev Ops Score' do
+describe 'DevOps Score' do
before do
sign_in(create(:admin))
end
@@ -10,11 +10,11 @@ describe 'Dev Ops Score' do
it 'has dismissable intro callout', :js do
visit instance_statistics_dev_ops_score_index_path
- expect(page).to have_content 'Introducing Your Conversational Development Index'
+ expect(page).to have_content 'Introducing Your DevOps Score'
find('.js-close-callout').click
- expect(page).not_to have_content 'Introducing Your Conversational Development Index'
+ expect(page).not_to have_content 'Introducing Your DevOps Score'
end
context 'when usage ping is disabled' do
@@ -31,7 +31,7 @@ describe 'Dev Ops Score' do
it 'hides the intro callout' do
visit instance_statistics_dev_ops_score_index_path
- expect(page).not_to have_content 'Introducing Your Conversational Development Index'
+ expect(page).not_to have_content 'Introducing Your DevOps Score'
end
end