aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 23:57:27 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 23:57:27 +0200
commit886d47973466b5516a633b0e6dd43269082f1676 (patch)
treef0bcbcd998f9971b582177bc726b3d8f679dbb1e /tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
parentebf5e5087d2f79ece42a660ee7bddaa3ff3ebe1e (diff)
downloadwallabag-886d47973466b5516a633b0e6dd43269082f1676.tar.gz
wallabag-886d47973466b5516a633b0e6dd43269082f1676.tar.zst
wallabag-886d47973466b5516a633b0e6dd43269082f1676.zip
Fix tests
Diffstat (limited to 'tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php')
-rw-r--r--tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php b/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
index b20226ad..ca20c85b 100644
--- a/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
+++ b/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
@@ -99,9 +99,9 @@ class WallabagV2ControllerTest extends WallabagCoreTestCase
99 $this->getLoggedInUserId() 99 $this->getLoggedInUserId()
100 ); 100 );
101 101
102 $this->assertEmpty($content->getMimetype()); 102 $this->assertNotEmpty($content->getMimetype());
103 $this->assertEmpty($content->getPreviewPicture()); 103 $this->assertNotEmpty($content->getPreviewPicture());
104 $this->assertEmpty($content->getLanguage()); 104 $this->assertNotEmpty($content->getLanguage());
105 $this->assertEquals(0, count($content->getTags())); 105 $this->assertEquals(0, count($content->getTags()));
106 106
107 $content = $client->getContainer() 107 $content = $client->getContainer()