Applied fixes from StyleCI
This commit is contained in:
parent
85fb3a54cd
commit
18a15a7484
1 changed files with 3 additions and 3 deletions
|
@ -4,8 +4,8 @@
|
||||||
*/
|
*/
|
||||||
namespace Alltube\Test;
|
namespace Alltube\Test;
|
||||||
|
|
||||||
use Alltube\VideoDownload;
|
|
||||||
use Alltube\Config;
|
use Alltube\Config;
|
||||||
|
use Alltube\VideoDownload;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for the VideoDownload class.
|
* Unit tests for the VideoDownload class.
|
||||||
|
@ -44,7 +44,7 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase
|
||||||
public function testConstructorWithMissingYoutubedl()
|
public function testConstructorWithMissingYoutubedl()
|
||||||
{
|
{
|
||||||
new VideoDownload(
|
new VideoDownload(
|
||||||
new Config(['youtubedl'=>'foo'])
|
new Config(['youtubedl' => 'foo'])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase
|
||||||
public function testConstructorWithMissingPython()
|
public function testConstructorWithMissingPython()
|
||||||
{
|
{
|
||||||
new VideoDownload(
|
new VideoDownload(
|
||||||
new Config(['python'=>'foo'])
|
new Config(['python' => 'foo'])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue