diff options
author | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2014-06-08 23:40:37 +0200 |
---|---|---|
committer | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2014-06-08 23:42:09 +0200 |
commit | f07f524badf39c197dbcb18e74935fc5957803a3 (patch) | |
tree | 2969947da790ca1f67d9ba0886eda0c121165761 /spec | |
parent | 7a89cef601dde68d5964f68bb6fe2e94d72fcf55 (diff) | |
download | gitlab-ce-f07f524badf39c197dbcb18e74935fc5957803a3.tar.gz |
Fix for the broken routing specs
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
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 |