Skip to content

Commit

Permalink
Fixing BasicAuthenticate test
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 6, 2011
1 parent 6b46c5c commit 0696dd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Auth/BasicAuthenticate.php
Expand Up @@ -13,7 +13,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('BaseAuthorize', 'Controller/Component/Auth');
App::uses('BaseAuthenticate', 'Controller/Component/Auth');

/**
* Basic Authentication adapter for AuthComponent.
Expand Down
Expand Up @@ -14,11 +14,11 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::import('Component', 'Auth');
App::import('Component', 'auth/basic_authenticate');
App::import('Model', 'AppModel');
App::import('Core', 'CakeRequest');
App::import('Core', 'CakeResponse');
App::uses('AuthComponent', 'Controller/Component');
App::uses('BasicAuthenticate', 'Controller/Component/Auth');
App::uses('AppModel', 'Model');
App::uses('CakeRequest', 'Network');
App::uses('CakeResponse', 'Network');


require_once CAKE_TESTS . 'cases' . DS . 'libs' . DS . 'model' . DS . 'models.php';
Expand Down

0 comments on commit 0696dd9

Please sign in to comment.