diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2020-05-25 05:50:11 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2020-05-25 05:50:11 +0200 |
commit | 9dfceff022df2258d1e8317d91d6207d426d625c (patch) | |
tree | ff4c2503fbcfbe2dd0dfa6d1f6d9a6c4c266279d | |
parent | 0db13229418cead7fe6d7c6e18789b39fb9ae639 (diff) | |
download | wallabag-9dfceff022df2258d1e8317d91d6207d426d625c.tar.gz wallabag-9dfceff022df2258d1e8317d91d6207d426d625c.tar.zst wallabag-9dfceff022df2258d1e8317d91d6207d426d625c.zip |
Fix test
-rw-r--r-- | tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php index 963759b1..15646d55 100644 --- a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php | |||
@@ -121,7 +121,7 @@ class PinboardControllerTest extends WallabagCoreTestCase | |||
121 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); | 121 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); |
122 | $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://ma.ttias.be is ok'); | 122 | $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://ma.ttias.be is ok'); |
123 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://ma.ttias.be is ok'); | 123 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://ma.ttias.be is ok'); |
124 | $this->assertNull($content->getLanguage(), 'Language for https://ma.ttias.be is null'); | 124 | $this->assertNotEmpty($content->getLanguage(), 'Language for https://ma.ttias.be is ok'); |
125 | 125 | ||
126 | $tags = $content->getTags(); | 126 | $tags = $content->getTags(); |
127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |