From c34fe9945a189c936e3fe18140f77ef781c902df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 3 Aug 2021 08:36:56 +0200 Subject: [PATCH] Fixed test --- tests/Wallabag/CoreBundle/Controller/TagControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php b/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php index 5e8f9f3de..8d04f667a 100644 --- a/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php @@ -195,7 +195,7 @@ class TagControllerTest extends WallabagCoreTestCase $entry2 = new Entry($this->getLoggedInUser()); $entry2->setUrl('http://0.0.0.0/bar'); $entry2->addTag($tag); - $this->getEntityManager()->persist($entry); + $this->getEntityManager()->persist($entry2); $this->getEntityManager()->flush(); $this->getEntityManager()->clear();