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

@ -153,7 +153,7 @@ class DownloadControllerTest extends ControllerTest
*/
public function testDownloadWithMissingPassword()
{
$this->assertRequestIsClientError('download', ['url' => 'http://vimeo.com/68375962']);
$this->assertRequestIsClientError('download', ['url' => 'https://vimeo.com/68375962']);
}
/**
@ -164,7 +164,7 @@ class DownloadControllerTest extends ControllerTest
public function testDownloadWithError()
{
$this->expectException(YoutubedlException::class);
$this->getRequestResult('download', ['url' => 'http://example.com/foo']);
$this->getRequestResult('download', ['url' => 'https://example.com/foo']);
}
/**