diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-10-18 14:17:15 +0200 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-10-18 14:17:15 +0200 |
commit | 44df201280ce67ac704c31e7cc24d5c6b34cff90 (patch) | |
tree | 2dcb1b81919fa6cd98485ec02b51ebedce92d3a5 /features | |
parent | 946f00ed7f2b487273bb5dabdb5997da60f1dc92 (diff) | |
download | gitlab-ce-44df201280ce67ac704c31e7cc24d5c6b34cff90.tar.gz |
Restore dashboard snippets tabs.
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 dea3256229f..997c605bce2 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 - page.within('.nav-tabs') do + page.within('.snippet-scope-menu') do click_link "Internal" end end step 'I click "Private" filter' do - page.within('.nav-tabs') do + page.within('.snippet-scope-menu') do click_link "Private" end end step 'I click "Public" filter' do - page.within('.nav-tabs') do + page.within('.snippet-scope-menu') do click_link "Public" end end |