summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-10-16 21:09:38 -0700
committerStan Hu <stanhu@gmail.com>2016-10-16 21:09:38 -0700
commit913c1cd87aee7450fa0f8b6571302cff9b5f1dc1 (patch)
tree7071625cf27dcfcf51312259a14705f1743eaf55
parent7d196816c9adac6290d76eba52d708cb2c3d5ed4 (diff)
downloadgitlab-ce-913c1cd87aee7450fa0f8b6571302cff9b5f1dc1.tar.gz
Fix broken rspec in compare text
!6910 changed the filter text from "Filter by branch/tag" to "Filter by Git revision"
-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