From 0d2c0c1c6cc8d2a3e042823559fcb100a21148a0 Mon Sep 17 00:00:00 2001 From: nate Date: Tue, 12 Feb 2008 14:16:13 +0000 Subject: [PATCH] Cleanup from last commit git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6457 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/tests/cases/libs/router.test.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/cake/tests/cases/libs/router.test.php b/cake/tests/cases/libs/router.test.php index fc1a54c65..93bf5164f 100644 --- a/cake/tests/cases/libs/router.test.php +++ b/cake/tests/cases/libs/router.test.php @@ -595,13 +595,11 @@ class RouterTest extends UnitTestCase { $this->assertEqual($result, $expected); $this->router->reload(); - $this->router->testing = true; $this->router->connect('/:controller/:action/*', array(), array('controller' => 'some_controller')); $this->router->connect('/', array('plugin' => 'pages', 'controller' => 'pages', 'action' => 'display')); $result = $this->router->parse('/'); $expected = array('pass' => array(), 'named' => array(), 'controller' => 'pages', 'action' => 'display', 'plugin' => 'pages'); $this->assertEqual($result, $expected); - unset($this->router->testing); } function testUuidRoutes() {