Merge pull request #1328 from kimegede/typo-fix

Correct small typos.
This commit is contained in:
ADmad 2013-06-05 01:01:28 -07:00
commit 5d0d5fb96c
2 changed files with 3 additions and 3 deletions

View file

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