This commit is contained in:
Pierre Rudloff 2017-05-19 14:30:59 +02:00
parent e8ea411089
commit 77fe2cb101
2 changed files with 8 additions and 2 deletions

View file

@ -488,7 +488,10 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase
*/
public function testGetPlaylistArchiveStream()
{
$video = $this->download->getJSON('https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC', 'best');
$video = $this->download->getJSON(
'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC',
'best'
);
$this->assertStream($this->download->getPlaylistArchiveStream($video, 'best'));
}
}