diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-22 18:25:09 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-22 18:25:09 +0300 |
commit | 47d26b05a4bf4f9d0bc118997d0aed78384c8f60 (patch) | |
tree | 6bf6dc51d8bcad3cef7182e0e494299abccc017f /features | |
parent | 0261a5e222be1e7785a5af4390d457e19e6fef64 (diff) | |
download | gitlab-ce-47d26b05a4bf4f9d0bc118997d0aed78384c8f60.tar.gz |
Fix snippets tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/snippets/user.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/snippets/user.rb b/features/steps/snippets/user.rb index 866f637ab6c..146cc535d88 100644 --- a/features/steps/snippets/user.rb +++ b/features/steps/snippets/user.rb @@ -32,19 +32,19 @@ class Spinach::Features::SnippetsUser < Spinach::FeatureSteps end step 'I click "Internal" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Internal" end end step 'I click "Private" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Private" end end step 'I click "Public" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Public" end end |