Fix indentation

This commit is contained in:
Francesco Levorato 2015-09-18 00:04:38 +02:00
parent f1ae825015
commit 333463ddf2
1 changed files with 2 additions and 2 deletions

View File

@ -24,9 +24,9 @@ describe ProjectsController do
context "when requested with case sensitive namespace and project path" 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
it "loads the page if normalized path matches request path" do