updating unit test in preparation for planned file name change, currently failing

This commit is contained in:
El RIDO
2017-10-03 19:45:47 +02:00
parent e505f8ab71
commit 2c8a4c631b
2 changed files with 3 additions and 2 deletions

View File

@@ -12,10 +12,10 @@ if (!defined('PATH')) {
define('PATH', '..' . DIRECTORY_SEPARATOR);
}
if (!defined('CONF')) {
define('CONF', PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.ini');
define('CONF', PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.php');
}
if (!is_file(CONF)) {
copy(CONF . '.sample', CONF);
copy(PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.sample.php', CONF);
}
require PATH . 'vendor/autoload.php';