Skip to content

Commit

Permalink
Fix constant already defined error when running only Cache tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 21, 2014
1 parent 6de2ba1 commit 10614f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/bootstrap.php
Expand Up @@ -19,7 +19,9 @@

require_once 'vendor/autoload.php';

define('DS', DIRECTORY_SEPARATOR);
if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
define('ROOT', dirname(__DIR__));
define('APP_DIR', 'TestApp');

Expand Down

0 comments on commit 10614f4

Please sign in to comment.