From df55c0813388396aa8b8b91868922cc0d42d2206 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 17 Oct 2010 23:43:12 -0400 Subject: [PATCH] Fixing typo. Fixing bad import which caused fails when running tests from the webrunner. --- cake/console/shells/testsuite.php | 2 +- cake/tests/cases/console/shells/testsuite.test.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/console/shells/testsuite.php b/cake/console/shells/testsuite.php index c9a67799a..7d9356762 100644 --- a/cake/console/shells/testsuite.php +++ b/cake/console/shells/testsuite.php @@ -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.'), diff --git a/cake/tests/cases/console/shells/testsuite.test.php b/cake/tests/cases/console/shells/testsuite.test.php index 88b9b7e85..5ed119215 100644 --- a/cake/tests/cases/console/shells/testsuite.test.php +++ b/cake/tests/cases/console/shells/testsuite.test.php @@ -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';