From adde2a9af52f55abab940e8a19bebdba2fb49612 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 15 Jan 2012 15:16:49 -0500 Subject: [PATCH] Fixed broken Controller::setAction() testcase --- lib/Cake/Test/Case/Controller/ControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/Controller/ControllerTest.php b/lib/Cake/Test/Case/Controller/ControllerTest.php index 52c0c8e69..455b4fb77 100644 --- a/lib/Cake/Test/Case/Controller/ControllerTest.php +++ b/lib/Cake/Test/Case/Controller/ControllerTest.php @@ -997,7 +997,7 @@ class ControllerTest extends CakeTestCase { $expected = array('testId' => 1, 'test2Id' => 2); $this->assertSame($expected, $TestController->request->data); $this->assertSame('view', $TestController->request->params['action']); - $this->assertSame('index', $TestController->view); + $this->assertSame('view', $TestController->view); } /**