Commit 333463dd authored by Francesco Levorato's avatar Francesco Levorato

Fix indentation

parent f1ae8250
...@@ -24,9 +24,9 @@ describe ProjectsController do ...@@ -24,9 +24,9 @@ describe ProjectsController do
context "when requested with case sensitive namespace and project path" do context "when requested with case sensitive namespace and project path" do
it "redirects to the normalized path for case mismatch" do it "redirects to the normalized path for case mismatch" do
get :show, namespace_id: public_project.namespace.path, id: public_project.path.upcase get :show, namespace_id: public_project.namespace.path, id: public_project.path.upcase
expect(response).to redirect_to("/#{public_project.path_with_namespace}") expect(response).to redirect_to("/#{public_project.path_with_namespace}")
end end
it "loads the page if normalized path matches request path" do it "loads the page if normalized path matches request path" do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment