From a962a3ab1337d655b154e90d86a4b5e6698ec6b1 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 8 Feb 2021 09:56:25 +0100 Subject: [PATCH] CS --- .../ImportBundle/Controller/DeliciousControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Wallabag/ImportBundle/Controller/DeliciousControllerTest.php b/tests/Wallabag/ImportBundle/Controller/DeliciousControllerTest.php index e37e9dbff..a8029f45e 100644 --- a/tests/Wallabag/ImportBundle/Controller/DeliciousControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/DeliciousControllerTest.php @@ -122,7 +122,7 @@ class DeliciousControllerTest extends WallabagCoreTestCase $tags = $content->getTags(); $this->assertContains('osx', $tags, 'It includes the "osx" tag'); - $this->assertGreaterThanOrEqual(4, count($tags)); + $this->assertGreaterThanOrEqual(4, \count($tags)); $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); $this->assertSame('2013-01-17', $content->getCreatedAt()->format('Y-m-d'));