X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2FWallabag%2FImportBundle%2FImport%2FImportChainTest.php;h=f27826f40a1340b50dd59c0c4c3cf0b79fe886dc;hb=bd91bd5c32dcec997e1cc1aff93f585dac093742;hp=32568ce53a0b9bd7391ec32f6e5be65cc6773a1d;hpb=2e16a9033930ea33721f9ffba3fb12d145f5d56b;p=github%2Fwallabag%2Fwallabag.git diff --git a/tests/Wallabag/ImportBundle/Import/ImportChainTest.php b/tests/Wallabag/ImportBundle/Import/ImportChainTest.php index 32568ce5..f27826f4 100644 --- a/tests/Wallabag/ImportBundle/Import/ImportChainTest.php +++ b/tests/Wallabag/ImportBundle/Import/ImportChainTest.php @@ -2,9 +2,10 @@ namespace Tests\Wallabag\ImportBundle\Import; +use PHPUnit\Framework\TestCase; use Wallabag\ImportBundle\Import\ImportChain; -class ImportChainTest extends \PHPUnit_Framework_TestCase +class ImportChainTest extends TestCase { public function testGetAll() { @@ -16,6 +17,6 @@ class ImportChainTest extends \PHPUnit_Framework_TestCase $importChain->addImport($import, 'alias'); $this->assertCount(1, $importChain->getAll()); - $this->assertEquals($import, $importChain->getAll()['alias']); + $this->assertSame($import, $importChain->getAll()['alias']); } }