remove LIBS constant

libs always means the Cake lib - so use the CAKE constant
This commit is contained in:
AD7six 2011-04-17 12:35:21 +02:00
parent ff2d9e244a
commit afa8f6b441
67 changed files with 571 additions and 434 deletions

View file

@ -47,8 +47,8 @@ class CakeLogTest extends CakeTestCase {
*/
function testImportingLoggers() {
App::build(array(
'libs' => array(LIBS . 'Test' . DS . 'test_app' . DS . 'Lib' . DS),
'plugins' => array(LIBS . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
'libs' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Lib' . DS),
'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
), true);
CakePlugin::load('TestPlugin');