From 18a15a7484c9d5c65958afc6a0995157731605c5 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Tue, 18 Oct 2016 08:45:54 +0000 Subject: [PATCH] Applied fixes from StyleCI --- tests/VideoDownloadTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/VideoDownloadTest.php b/tests/VideoDownloadTest.php index 55e5915..22aa6c9 100644 --- a/tests/VideoDownloadTest.php +++ b/tests/VideoDownloadTest.php @@ -4,8 +4,8 @@ */ namespace Alltube\Test; -use Alltube\VideoDownload; use Alltube\Config; +use Alltube\VideoDownload; /** * Unit tests for the VideoDownload class. @@ -44,7 +44,7 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase public function testConstructorWithMissingYoutubedl() { new VideoDownload( - new Config(['youtubedl'=>'foo']) + new Config(['youtubedl' => 'foo']) ); } @@ -57,7 +57,7 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase public function testConstructorWithMissingPython() { new VideoDownload( - new Config(['python'=>'foo']) + new Config(['python' => 'foo']) ); }