diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2016-08-25 09:19:14 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2016-08-26 09:38:21 -0500 |
commit | aeb280b0ccb7186b75cf73fcd2e051c5ed661443 (patch) | |
tree | adad1bde334995fc4f35dbbfc625b1f318f0ccb4 /spec | |
parent | 6e584f46d2479d5550c12293af00fd494b60f2c0 (diff) | |
download | gitlab-ce-aeb280b0ccb7186b75cf73fcd2e051c5ed661443.tar.gz |
Fix markdown help references
Diffstat (limited to 'spec')
-rw-r--r-- | spec/routing/routing_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb index d65648dd0b2..4bc3cddd9c2 100644 --- a/spec/routing/routing_spec.rb +++ b/spec/routing/routing_spec.rb @@ -107,9 +107,9 @@ describe HelpController, "routing" do end it 'to #show' do - path = '/help/markdown/markdown.md' + path = '/help/user/markdown.md' expect(get(path)).to route_to('help#show', - path: 'markdown/markdown', + path: 'user/markdown', format: 'md') path = '/help/workflow/protected_branches/protected_branches1.png' |