Ignore unused parameters in test

This commit is contained in:
Pierre Rudloff 2017-12-05 14:52:20 +01:00
parent 6b73026194
commit 8cb3eb7208
1 changed files with 7 additions and 2 deletions

View File

@ -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]);
}