mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
PR fix
This commit is contained in:
parent
51e19100e1
commit
62aea4d08d
|
@ -1,7 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PortableInfoboxDataServiceTest extends PHPUnit_Framework_TestCase {
|
||||
private $infoboxRenderService;
|
||||
|
||||
protected function setUp() {
|
||||
$this->setupFile = dirname( __FILE__ ) . '/../PortableInfobox.setup.php';
|
||||
|
@ -53,7 +52,7 @@ class PortableInfoboxDataServiceTest extends PHPUnit_Framework_TestCase {
|
|||
public function testImageListRemoveDuplicates() {
|
||||
$dataService = new PortableInfoboxDataService();
|
||||
$images = $dataService->getImageListFromInfoboxesData( $this->getInfoboxData() );
|
||||
$this->assertTrue( count( $images ) == 2 );
|
||||
$this->assertTrue( count( $images ) === 2 );
|
||||
}
|
||||
|
||||
public function testImageListFetchImages() {
|
||||
|
|
Loading…
Reference in a new issue