mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing typo.
Fixing bad import which caused fails when running tests from the webrunner.
This commit is contained in:
parent
01a20f61f1
commit
df55c08133
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ class TestSuiteShell extends Shell {
|
|||
public function getOptionParser() {
|
||||
$parser = new ConsoleOptionParser($this->name);
|
||||
$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'
|
||||
))->addArgument('category', array(
|
||||
'help' => __('app, core or name of a plugin.'),
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
App::import('Shell', 'Shell', false);
|
||||
App::import('Shell', 'TestSuite');
|
||||
App::import('Shell', 'Testsuite');
|
||||
|
||||
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||
|
||||
|
|
Loading…
Reference in a new issue