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:
authorHiroyuki Sato <sathiroyuki@gmail.com>2016-03-09 07:50:34 +0300
committerHiroyuki Sato <sathiroyuki@gmail.com>2016-03-17 02:58:52 +0300
commitf0b052e16868107e1693e9b3454039420bee1dde (patch)
tree2fb9af9740f5afa6b7a649b33ba05990f74372a0 /features
parent374037b8a326b82a7787b2e29da820aa9c4390b3 (diff)
Fix wiki search results point to raw source
Diffstat (limited to 'features')
-rw-r--r--features/steps/search.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/search.rb b/features/steps/search.rb
index 48ea3fa3876..0ad837ebe1d 100644
--- a/features/steps/search.rb
+++ b/features/steps/search.rb
@@ -100,7 +100,7 @@ class Spinach::Features::Search < Spinach::FeatureSteps
step 'I should see "test_wiki" link in the search results' do
page.within('.results') do
- find(:css, '.search-results').should have_link 'test_wiki.md'
+ expect(find(:css, '.search-results')).to have_link 'test_wiki'
end
end