diff --git a/tests/FrontControllerTest.php b/tests/FrontControllerTest.php index 55d1440..81e75b3 100644 --- a/tests/FrontControllerTest.php +++ b/tests/FrontControllerTest.php @@ -462,7 +462,10 @@ class FrontControllerTest extends \PHPUnit_Framework_TestCase */ public function testRedirectWithEmptyUrl() { - $this->assertRequestIsServerError('redirect', ['url'=>'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC']); + $this->assertRequestIsServerError( + 'redirect', + ['url'=> 'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC'] + ); } /** diff --git a/tests/VideoDownloadTest.php b/tests/VideoDownloadTest.php index 5227da1..8167b89 100644 --- a/tests/VideoDownloadTest.php +++ b/tests/VideoDownloadTest.php @@ -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')); } }