modified constant definition

This commit is contained in:
Anton Grebnev
2011-10-26 19:31:56 +04:00
parent 76b0b56e50
commit db48b33aed

View File

@ -70,7 +70,9 @@ class LoadTest extends PHPUnit_Framework_TestCase
$autoload = require(self::$file); $autoload = require(self::$file);
$this->assertNotEmpty($autoload); $this->assertNotEmpty($autoload);
define('DEBUG', true); if(!defined('DEBUG')) {
define('DEBUG', true);
}
Load::autoload('Func'); Load::autoload('Func');
Load::autoload('Captcha'); Load::autoload('Captcha');
} }