Commit 3b9e3021ee3d07e561d362aa95e45f3d94d99eed
1 parent
a324960d
Exists in
master
and in
4 other branches
fix bad constant reference in `project_routing_spec.rb`.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
spec/routing/project_routing_spec.rb
... | ... | @@ -262,7 +262,7 @@ end |
262 | 262 | # project_snippet GET /:project_id/snippets/:id(.:format) snippets#show |
263 | 263 | # PUT /:project_id/snippets/:id(.:format) snippets#update |
264 | 264 | # DELETE /:project_id/snippets/:id(.:format) snippets#destroy |
265 | -describe Project::SnippetsController, "routing" do | |
265 | +describe Projects::SnippetsController, "routing" do | |
266 | 266 | it "to #raw" do |
267 | 267 | get("/gitlabhq/snippets/1/raw").should route_to('projects/snippets#raw', project_id: 'gitlabhq', id: '1') |
268 | 268 | end | ... | ... |