diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-25 09:19:51 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-25 09:19:51 +0200 |
commit | 1a2e11c891ef4a2a87b84f2b0b36316bb809ff14 (patch) | |
tree | 1c8fa16e1127f87f12e6c94584ce7cf83746c2db /features | |
parent | f6a4e5636d2ed6d99006c36b59da04ec86dfebab (diff) | |
download | gitlab-ce-1a2e11c891ef4a2a87b84f2b0b36316bb809ff14.tar.gz |
Fix per-project counters for Dashboard filters
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/dashboard/dashboard_issues.rb | 2 | ||||
-rw-r--r-- | features/steps/dashboard/dashboard_merge_requests.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/dashboard/dashboard_issues.rb b/features/steps/dashboard/dashboard_issues.rb index 47d83f73ed2..9d486bd8156 100644 --- a/features/steps/dashboard/dashboard_issues.rb +++ b/features/steps/dashboard/dashboard_issues.rb @@ -34,7 +34,7 @@ class DashboardIssues < Spinach::FeatureSteps step 'I click "Authored by me" link' do within ".scope-filter" do - click_link 'Authored by me' + click_link 'Created by me' end end diff --git a/features/steps/dashboard/dashboard_merge_requests.rb b/features/steps/dashboard/dashboard_merge_requests.rb index 3c35462a8db..f6fe47470b3 100644 --- a/features/steps/dashboard/dashboard_merge_requests.rb +++ b/features/steps/dashboard/dashboard_merge_requests.rb @@ -34,7 +34,7 @@ class DashboardMergeRequests < Spinach::FeatureSteps step 'I click "Authored by me" link' do within ".scope-filter" do - click_link 'Authored by me' + click_link 'Created by me' end end |