]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - tests/Wallabag/ImportBundle/Import/ImportChainTest.php
Merge pull request #3515 from wallabag/php-7.2
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Import / ImportChainTest.php
index 32568ce53a0b9bd7391ec32f6e5be65cc6773a1d..f27826f40a1340b50dd59c0c4c3cf0b79fe886dc 100644 (file)
@@ -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']);
     }
 }