diff --git a/config/config_test_windows.yml b/config/config_test_windows.yml deleted file mode 100644 index 34d8f13..0000000 --- a/config/config_test_windows.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -convert: false -python: C:\Python36\python.exe -avconv: C:\ProgramData\chocolatey\bin\ffmpeg.exe -avconvVerbosity: fatal -phantomjsDir: C:\ProgramData\chocolatey\bin\ -youtubedl: C:\Python36\Lib\site-packages\youtube_dl\__main__.py -params: - - --no-warnings - - --ignore-errors - - --flat-playlist - - --restrict-filenames - - --no-check-certificate diff --git a/tests/BaseTest.php b/tests/BaseTest.php index aac832b..a377617 100644 --- a/tests/BaseTest.php +++ b/tests/BaseTest.php @@ -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'; } /**