Correct small typos.

This commit is contained in:
Kim Egede Jakobsen 2013-06-05 09:57:18 +02:00
parent 3aa189eb3a
commit 6c3a63ea9b
2 changed files with 3 additions and 3 deletions

View file

@ -171,8 +171,8 @@ class TestShell extends Shell {
*/
public function initialize() {
$this->_dispatcher = new CakeTestSuiteDispatcher();
$sucess = $this->_dispatcher->loadTestFramework();
if (!$sucess) {
$success = $this->_dispatcher->loadTestFramework();
if (!$success) {
throw new Exception(__d('cake_dev', 'Please install PHPUnit framework <info>(http://www.phpunit.de)</info>'));
}
}

View file

@ -160,7 +160,7 @@ class BasicAuthenticateTest extends CakeTestCase {
}
/**
* test authenticate sucesss
* test authenticate success
*
* @return void
*/