diff options
author | Hiroyuki Sato <sathiroyuki@gmail.com> | 2016-03-09 13:50:34 +0900 |
---|---|---|
committer | Hiroyuki Sato <sathiroyuki@gmail.com> | 2016-03-17 08:58:52 +0900 |
commit | f0b052e16868107e1693e9b3454039420bee1dde (patch) | |
tree | 2fb9af9740f5afa6b7a649b33ba05990f74372a0 /features/steps/search.rb | |
parent | 374037b8a326b82a7787b2e29da820aa9c4390b3 (diff) | |
download | gitlab-ce-f0b052e16868107e1693e9b3454039420bee1dde.tar.gz |
Fix wiki search results point to raw source
Diffstat (limited to 'features/steps/search.rb')
-rw-r--r-- | features/steps/search.rb | 2 |
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 |