diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2017-03-29 21:53:10 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2017-03-29 21:53:10 +0000 |
commit | f7fefe82e5e6c72f15e2089816460d704c3ac783 (patch) | |
tree | 98c78137e56dfa0e7f5470824b8a80425b5105b6 /features | |
parent | 3e1fb2a54052ca8a7483e788b70380b5c1768c71 (diff) | |
parent | 48a30a7ab38932d14dfd4136960983efe76fa630 (diff) | |
download | gitlab-ce-f7fefe82e5e6c72f15e2089816460d704c3ac783.tar.gz |
Merge branch '23674-simplify-milestone-summary' into 'master'
Resolve "Simplify milestone summary"
Closes #23674
See merge request !10096
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/group/milestones.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/group/milestones.rb b/features/steps/group/milestones.rb index 20204ad8654..9996f3baf0d 100644 --- a/features/steps/group/milestones.rb +++ b/features/steps/group/milestones.rb @@ -36,7 +36,7 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps step 'I should see group milestone with all issues and MRs assigned to that milestone' do expect(page).to have_content('Milestone GL-113') - expect(page).to have_content('3 issues: 3 open and 0 closed') + expect(page).to have_content('Issues 3 Open: 3 Closed: 0') issue = Milestone.find_by(name: 'GL-113').issues.first expect(page).to have_link(issue.title, href: namespace_project_issue_path(issue.project.namespace, issue.project, issue)) end |