diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-03-24 18:27:47 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-03-25 00:33:45 -0500 |
commit | 5af7dbe37ace8d0a56a5e3df7c3de0e28a9d0859 (patch) | |
tree | 62cf57125e671799f4882bc0aaf8cd816ffade2a /features | |
parent | 47af12037b9247a65a50b8ab4e4a5f05c3731dea (diff) | |
download | gitlab-ce-5af7dbe37ace8d0a56a5e3df7c3de0e28a9d0859.tar.gz |
update milestone page tests
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 |