diff --git a/lib/Cake/Test/Case/Controller/ControllerTest.php b/lib/Cake/Test/Case/Controller/ControllerTest.php index 87bb13a5f8d..af63cf88c37 100644 --- a/lib/Cake/Test/Case/Controller/ControllerTest.php +++ b/lib/Cake/Test/Case/Controller/ControllerTest.php @@ -644,9 +644,9 @@ public function testRender() { $this->assertEqual($expected, $View->validationErrors['ControllerComment']); $expectedModels = array( - 'ControllerAlias' => null, - 'ControllerComment' => null, - 'ControllerPost' => null + 'ControllerAlias' => array('plugin' => null, 'className' => 'ControllerAlias'), + 'ControllerComment' => array('plugin' => null, 'className' => 'ControllerComment'), + 'ControllerPost' => array('plugin' => null, 'className' => 'ControllerPost') ); $this->assertEqual($expectedModels, $Controller->request->params['models']);