Fix already defined warning from dav test bootstrap

This commit is contained in:
Robin Appelman 2015-11-30 13:58:39 +01:00
parent a94819f4a4
commit 60d6582991
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
<?php
define('PHPUNIT_RUN', 1);
if (!defined('PHPUNIT_RUN')) {
define('PHPUNIT_RUN', 1);
}
require_once __DIR__.'/../../../../lib/base.php';