Fixing typo.

Fixing bad import which caused fails when running tests from the webrunner.
This commit is contained in:
mark_story 2010-10-17 23:43:12 -04:00
parent 01a20f61f1
commit df55c08133
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ class TestSuiteShell extends Shell {
public function getOptionParser() { public function getOptionParser() {
$parser = new ConsoleOptionParser($this->name); $parser = new ConsoleOptionParser($this->name);
$parser->description(array( $parser->description(array(
'The CakPHP Testsuite allows you to run test cases from the command line', 'The CakePHP Testsuite allows you to run test cases from the command line',
'If run with no command line arguments, a list of available core test cases will be shown' 'If run with no command line arguments, a list of available core test cases will be shown'
))->addArgument('category', array( ))->addArgument('category', array(
'help' => __('app, core or name of a plugin.'), 'help' => __('app, core or name of a plugin.'),

View file

@ -19,7 +19,7 @@
*/ */
App::import('Shell', 'Shell', false); App::import('Shell', 'Shell', false);
App::import('Shell', 'TestSuite'); App::import('Shell', 'Testsuite');
require_once CAKE . 'console' . DS . 'shell_dispatcher.php'; require_once CAKE . 'console' . DS . 'shell_dispatcher.php';