Ignore unused parameters in test
This commit is contained in:
parent
6b73026194
commit
8cb3eb7208
1 changed files with 7 additions and 2 deletions
|
@ -100,8 +100,13 @@ class VideoDownloadTest extends TestCase
|
|||
* @dataProvider rtmpUrlProvider
|
||||
* @dataProvider remuxUrlProvider
|
||||
*/
|
||||
public function testGetURL($url, $format, $filename, $extension, $domain)
|
||||
{
|
||||
public function testGetURL(
|
||||
$url,
|
||||
$format,
|
||||
/* @scrutinizer ignore-unused */ $filename,
|
||||
/* @scrutinizer ignore-unused */ $extension,
|
||||
$domain
|
||||
) {
|
||||
$videoURL = $this->download->getURL($url, $format);
|
||||
$this->assertContains($domain, $videoURL[0]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue