Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-10-17 07:11:28 +0300
committerRémy Coutable <remy@rymai.me>2016-10-17 15:15:56 +0300
commit08a9e8057675161c7ccf78b7307cc63827f12693 (patch)
tree816886220d770036f3cb9eb93f87fc4672d2e83f /spec/features/compare_spec.rb
parent23cb84b590a73e6b16cf82ea7815bdca15b49d7e (diff)
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/features/compare_spec.rb')
-rw-r--r--spec/features/compare_spec.rb2
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