Use HTTPS URLs in tests
This commit is contained in:
parent
363bf9b08c
commit
dad8b6d704
4 changed files with 11 additions and 11 deletions
|
@ -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']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue