Use HTTPS URLs in tests

This commit is contained in:
Pierre Rudloff 2022-02-27 23:44:36 +01:00
parent 363bf9b08c
commit dad8b6d704
4 changed files with 11 additions and 11 deletions

View file

@ -49,7 +49,7 @@ class JsonControllerTest extends ControllerTest
public function testJsonWithError()
{
$this->expectException(YoutubedlException::class);
$this->getRequestResult('json', ['url' => 'http://example.com/foo']);
$this->getRequestResult('json', ['url' => 'https://example.com/foo']);
}
/**