diff options
author | Bryce Johnson <bryce@gitlab.com> | 2017-08-07 20:55:50 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2017-08-07 20:55:50 +0000 |
commit | 0532bff6d41fd3c685c88622f34fa726f171568a (patch) | |
tree | 6c2f1cc5abe0bfdcc8ebe21896f3f5ff4c0b9f1a /spec/features/groups | |
parent | 5f30350c5b2482f72e221cce33ebd66919fcd6b4 (diff) | |
download | gitlab-ce-0532bff6d41fd3c685c88622f34fa726f171568a.tar.gz |
Group-level new issue & MR using previously selected project
Diffstat (limited to 'spec/features/groups')
-rw-r--r-- | spec/features/groups/empty_states_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/groups/empty_states_spec.rb b/spec/features/groups/empty_states_spec.rb index 7f28553c44e..243e8536168 100644 --- a/spec/features/groups/empty_states_spec.rb +++ b/spec/features/groups/empty_states_spec.rb @@ -38,7 +38,7 @@ feature 'Groups Merge Requests Empty States' do it 'should show a new merge request button' do within '.empty-state' do - expect(page).to have_content('New merge request') + expect(page).to have_content('create merge request') end end @@ -63,7 +63,7 @@ feature 'Groups Merge Requests Empty States' do it 'should not show a new merge request button' do within '.empty-state' do - expect(page).not_to have_link('New merge request') + expect(page).not_to have_link('create merge request') end end end |