diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2019-05-31 15:53:04 +0000 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2019-05-31 15:53:04 +0000 |
commit | d7b277df46ffa3723a16159878958f9a825315e6 (patch) | |
tree | 89dac0eeecb620386d36c71fca7d9e4ea33ae3da /spec/helpers | |
parent | 5cd0e721f78310bc2bb810d17451f046270148d9 (diff) | |
parent | bd4a3b6ebfbca9663f47940ea01b8304d68e4e38 (diff) | |
download | gitlab-ce-d7b277df46ffa3723a16159878958f9a825315e6.tar.gz |
Merge branch 'dz-scope-project-routes-3' into 'master'
Move some project routes under - scope
See merge request gitlab-org/gitlab-ce!28830
Diffstat (limited to 'spec/helpers')
-rw-r--r-- | spec/helpers/gitlab_routing_helper_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/gitlab_routing_helper_spec.rb b/spec/helpers/gitlab_routing_helper_spec.rb index 143b28728a3..027480143bd 100644 --- a/spec/helpers/gitlab_routing_helper_spec.rb +++ b/spec/helpers/gitlab_routing_helper_spec.rb @@ -101,7 +101,7 @@ describe GitlabRoutingHelper do it 'returns project milestone edit path when given entity parent is not a Group' do milestone = create(:milestone, group: nil) - expect(edit_milestone_path(milestone)).to eq("/#{milestone.project.full_path}/milestones/#{milestone.iid}/edit") + expect(edit_milestone_path(milestone)).to eq("/#{milestone.project.full_path}/-/milestones/#{milestone.iid}/edit") end end end |