diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php | 6 |
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() |