Commit 743c232b16b3b35cfb9630b3cc721a20de08a83d
Exists in
master
and in
4 other branches
Merge pull request #4412 from senny/fix_bad_constant_reference
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 | ... | ... |