diff options
author | Robert Speicher <robert@gitlab.com> | 2016-07-06 16:23:49 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-07-06 16:23:49 +0000 |
commit | 413484f2deb74fdaf5796f879424218b6df21740 (patch) | |
tree | 7ad0da1f3cf4002c87c0e6acd6d59cc0f77cafec /spec | |
parent | 22780c4ac32a29347317a979c4b8bdf2913d34f7 (diff) | |
parent | bb3801268b0ff51543c8a6c727eb7574a2460d45 (diff) | |
download | gitlab-ce-413484f2deb74fdaf5796f879424218b6df21740.tar.gz |
Merge branch 'remove-lowercase-gitlab-ci-yml' into 'master'
Remove duplicate templates that are lowercase
See merge request !5114
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb b/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb index b8c06c383fb..fca40f68b01 100644 --- a/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb +++ b/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb @@ -19,12 +19,12 @@ feature 'User wants to add a .gitlab-ci.yml file', feature: true do find('.js-gitlab-ci-yml-selector').click wait_for_ajax within '.gitlab-ci-yml-selector' do - find('.dropdown-input-field').set('jekyll') - find('.dropdown-content li', text: 'jekyll').click + find('.dropdown-input-field').set('Jekyll') + find('.dropdown-content li', text: 'Jekyll').click end wait_for_ajax - expect(page).to have_css('.gitlab-ci-yml-selector .dropdown-toggle-text', text: 'jekyll') + expect(page).to have_css('.gitlab-ci-yml-selector .dropdown-toggle-text', text: 'Jekyll') expect(page).to have_content('This file is a template, and might need editing before it works on your project') expect(page).to have_content('jekyll build -d test') end |