diff --git a/cake/tests/cases/libs/router.test.php b/cake/tests/cases/libs/router.test.php index 0c67e02fd..d23326a68 100644 --- a/cake/tests/cases/libs/router.test.php +++ b/cake/tests/cases/libs/router.test.php @@ -48,8 +48,6 @@ class RouterTest extends UnitTestCase { $this->router->testVar = 'test'; $this->assertIdentical($this->router, Router::getInstance()); unset($this->router->testVar); - //pr($_SERVER); - echo "
"; } function testRouteWriting() { @@ -329,7 +327,7 @@ class RouterTest extends UnitTestCase { $expected = '/posts/index/published:0/deleted:0'; $this->assertEqual($result, $expected); } - + function testParamsUrlParsing() { $this->router->routes = array(); Router::connect('/', array('controller' => 'posts', 'action' => 'index'));