diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-09 12:26:46 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-09 12:26:46 +0300 |
commit | f055bad5135c8c3934daf16f8d9400f9a23b8960 (patch) | |
tree | c89cff55655fbc78e628960022f058f63a5c7b56 /spec | |
parent | 9e78fb5bf79d4d57c3aba5bd30eec7162f534ffe (diff) | |
parent | f07f524badf39c197dbcb18e74935fc5957803a3 (diff) | |
download | gitlab-ce-f055bad5135c8c3934daf16f8d9400f9a23b8960.tar.gz |
Merge pull request #7095 from jvanbaarsen/routing-spec-fix
Fix for the broken routing specs
Diffstat (limited to 'spec')
-rw-r--r-- | spec/routing/routing_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb index 7bfd5d0b998..1e92cf62dd5 100644 --- a/spec/routing/routing_spec.rb +++ b/spec/routing/routing_spec.rb @@ -245,7 +245,7 @@ describe "Groups", "routing" do end it "also display group#show on the short path" do - get("/1").should route_to('groups#show', id: '1') + get('/1').should route_to('namespaces#show', id: '1') end end |