Fix tests

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Jeremy Benoist 2017-07-01 08:41:55 +02:00 committed by Kevin Decherf
parent bd164a75c4
commit e437ad810b

View file

@ -125,7 +125,7 @@ class PinboardControllerTest extends WallabagCoreTestCase
$tags = $content->getTags();
$this->assertContains('foot', $tags, 'It includes the "foot" tag');
$this->assertContains('varnish', $tags, 'It includes the "varnish" tag');
$this->assertContains('PHP', $tags, 'It includes the "PHP" tag');
$this->assertContains('php', $tags, 'It includes the "php" tag');
$this->assertSame(3, count($tags));
$this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());