Commit f055bad5135c8c3934daf16f8d9400f9a23b8960

Authored by Dmitriy Zaporozhets
2 parents 9e78fb5b f07f524b

Merge pull request #7095 from jvanbaarsen/routing-spec-fix

Fix for the broken routing specs
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
spec/routing/routing_spec.rb
@@ -245,7 +245,7 @@ describe "Groups", "routing" do @@ -245,7 +245,7 @@ describe "Groups", "routing" do
245 end 245 end
246 246
247 it "also display group#show on the short path" do 247 it "also display group#show on the short path" do
248 - get("/1").should route_to('groups#show', id: '1') 248 + get('/1').should route_to('namespaces#show', id: '1')
249 end 249 end
250 end 250 end
251 251