Fixing last few errors after folder renaming

This commit is contained in:
Jose Lorenzo Rodriguez 2011-04-11 23:31:00 -04:30
parent 998b04d438
commit 7b8d395cb0
2 changed files with 2 additions and 2 deletions
lib/Cake/tests/Case

View file

@ -120,7 +120,7 @@ class ShellDispatcherTest extends CakeTestCase {
LIBS . 'tests' . DS . 'test_app' . DS . 'plugins' . DS
),
'Console/Command' => array(
LIBS . 'tests' . DS . 'test_app' . DS . 'console' . DS . 'shells' . DS
LIBS . 'tests' . DS . 'test_app' . DS . 'Console' . DS . 'Command' . DS
)
), true);
}

View file

@ -219,7 +219,7 @@ class ConfigureTest extends CakeTestCase {
* @return void
*/
function testLoadNoMerge() {
Configure::config('test', new PhpReader(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'config' . DS));
Configure::config('test', new PhpReader(LIBS . 'tests' . DS . 'test_app' . DS . 'config' . DS));
$result = Configure::load('var_test', 'test');
$this->assertTrue($result);