Skip to content

Commit

Permalink
Fixing incorrect imports that caused test case to fail in CLI when ru…
Browse files Browse the repository at this point in the history
…n by itself.
  • Loading branch information
markstory committed Nov 29, 2010
1 parent 91b5a52 commit 1f72e50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cake/tests/cases/libs/controller/components/acl.test.php
Expand Up @@ -17,7 +17,8 @@
* @since CakePHP(tm) v 1.2.0.5435
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::import(array('controller' .DS . 'components' . DS . 'acl', 'model' . DS . 'db_acl'));
App::import('Component', 'Acl');
App::import('model' . DS . 'db_acl');

/**
* AclNodeTwoTestBase class
Expand Down

0 comments on commit 1f72e50

Please sign in to comment.