Fix duplicate tags creation when assigning search results to tag

Fixes #6330
This commit is contained in:
Nicolas Lœuillet
2023-06-17 15:19:59 +02:00
parent bfbcee1df5
commit 28db6c22eb
2 changed files with 15 additions and 3 deletions

View File

@ -560,5 +560,12 @@ class TagControllerTest extends WallabagCoreTestCase
$this->assertContains('title', $tags);
}
$tag = $client->getContainer()
->get(EntityManagerInterface::class)
->getRepository(Tag::class)
->findByLabelsAndUser(['title'], $this->getLoggedInUserId());
$this->assertCount(1, $tag);
}
}