This commit is contained in:
Pierre Rudloff 2020-10-17 22:22:17 +02:00
parent fc6bf472b2
commit f5045b3ae7
2 changed files with 5 additions and 7 deletions

View File

@ -6,8 +6,6 @@
namespace Alltube\Test; namespace Alltube\Test;
use Alltube\Config;
use Alltube\Exception\ConfigException;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
/** /**

View File

@ -81,11 +81,11 @@ class VideoTest extends BaseTest
* @dataProvider remuxUrlProvider * @dataProvider remuxUrlProvider
*/ */
public function testgetUrl( public function testgetUrl(
$url, string $url,
$format, string $format,
/* @scrutinizer ignore-unused */ $filename, string $filename,
/* @scrutinizer ignore-unused */ $extension, string $extension,
$domain string $domain
) { ) {
$video = new Video($this->downloader, $url, $format); $video = new Video($this->downloader, $url, $format);
foreach ($video->getUrl() as $videoURL) { foreach ($video->getUrl() as $videoURL) {