Browse Source

Update AuthComponentTest.php

Error CS Cake\Controller\Componenent\
Eliu Florez 12 years ago
parent
commit
946812e7a2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/Controller/Component/AuthComponentTest.php

+ 2 - 2
tests/TestCase/Controller/Component/AuthComponentTest.php

@@ -139,7 +139,7 @@ class AuthComponentTest extends TestCase {
  */
 	public function testLogin() {
 		$AuthLoginFormAuthenticate = $this->getMock(
-			'Cake\Controller\Componenent\Auth\FormAuthenticate',
+			'Cake\Controller\Component\Auth\FormAuthenticate',
 			array('authenticate'), array(), '', false
 		);
 		$this->Auth->authenticate = array(
@@ -1066,7 +1066,7 @@ class AuthComponentTest extends TestCase {
  */
 	public function testLoginWithRequestData() {
 		$RequestLoginMockAuthenticate = $this->getMock(
-			'Cake\Controller\Componenent\Auth\FormAuthenticate',
+			'Cake\Controller\Component\Auth\FormAuthenticate',
 			array('authenticate'), array(), '', false
 		);
 		$request = new Request('users/login');