Remove Windows test config file

We don't have a Windows CI anymore
This commit is contained in:
Pierre Rudloff 2020-06-22 23:22:42 +02:00
parent f90a08e89c
commit 7a2c7b42fb
2 changed files with 1 additions and 20 deletions

View file

@ -22,13 +22,7 @@ abstract class BaseTest extends TestCase
*/
protected function getConfigFile()
{
if (PHP_OS == 'WINNT') {
$configFile = 'config_test_windows.yml';
} else {
$configFile = 'config_test.yml';
}
return __DIR__ . '/../config/' . $configFile;
return __DIR__ . '/../config/config_test.yml';
}
/**