diff options
author | Phil Hughes <me@iamphill.com> | 2016-06-21 11:12:28 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-06-21 11:12:28 +0100 |
commit | 85a5e42576fdbdef804dcab9b4ed2ad1d2bda23e (patch) | |
tree | 9621c5c9729e668f478ee2a5cada95350674a79e /spec/features | |
parent | b5a718d1d793dd0dde38d598b5594d40873874cd (diff) | |
download | gitlab-ce-85a5e42576fdbdef804dcab9b4ed2ad1d2bda23e.tar.gz |
Moved new environment link to below blank state text
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/environments_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/environments_spec.rb b/spec/features/environments_spec.rb index 40fea5211e9..f9e066ade54 100644 --- a/spec/features/environments_spec.rb +++ b/spec/features/environments_spec.rb @@ -20,7 +20,7 @@ feature 'Environments', feature: true do context 'without environments' do scenario 'does show no environments' do - expect(page).to have_content('No environments to show') + expect(page).to have_content('You don\'t have any environments right now.') end end @@ -33,7 +33,7 @@ feature 'Environments', feature: true do context 'without deployments' do scenario 'does show no deployments' do - expect(page).to have_content('No deployments yet') + expect(page).to have_content('You don\'t have any deployments right now.') end end @@ -61,7 +61,7 @@ feature 'Environments', feature: true do context 'without deployments' do scenario 'does show no deployments' do - expect(page).to have_content('No deployments for') + expect(page).to have_content('You don\'t have any deployments right now.') end end |