diff options
author | Stan Hu <stanhu@gmail.com> | 2016-10-17 04:11:28 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-10-17 14:15:56 +0200 |
commit | 08a9e8057675161c7ccf78b7307cc63827f12693 (patch) | |
tree | 816886220d770036f3cb9eb93f87fc4672d2e83f /spec | |
parent | 23cb84b590a73e6b16cf82ea7815bdca15b49d7e (diff) | |
download | gitlab-ce-08a9e8057675161c7ccf78b7307cc63827f12693.tar.gz |
Merge branch 'fix-compare-spec' into 'master'
Fix broken rspec in compare text
!6910 changed the filter text from "Filter by branch/tag" to "Filter by Git revision"
See merge request !6926
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/compare_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/compare_spec.rb b/spec/features/compare_spec.rb index c22109d19b6..43eb4000e58 100644 --- a/spec/features/compare_spec.rb +++ b/spec/features/compare_spec.rb @@ -44,7 +44,7 @@ describe "Compare", js: true do def select_using_dropdown(dropdown_type, selection) dropdown = find(".js-compare-#{dropdown_type}-dropdown") dropdown.find(".compare-dropdown-toggle").click - dropdown.fill_in("Filter by branch/tag", with: selection) + dropdown.fill_in("Filter by Git revision", with: selection) find_link(selection, visible: true).click end end |