diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-12-29 15:04:46 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-12-29 15:04:46 +0100 |
commit | 1bb1939ab76cfbf1cdb5fa1dccbdd15ba17cdfb0 (patch) | |
tree | eaecbd4b0cc705d5de653d12d62805c9e551bc4c /src/Wallabag/ApiBundle/Controller | |
parent | 01fddd0cb2fc6c83998a54d24d4ca6a27b564d36 (diff) | |
download | wallabag-1bb1939ab76cfbf1cdb5fa1dccbdd15ba17cdfb0.tar.gz wallabag-1bb1939ab76cfbf1cdb5fa1dccbdd15ba17cdfb0.tar.zst wallabag-1bb1939ab76cfbf1cdb5fa1dccbdd15ba17cdfb0.zip |
Cleanup tests
- WallabagRestController: remove the tag deletion from the API since we can't remove a tag now, we only remove reference to entries
- RuleBasedTaggerTest: remove workaround for asserting tag are equal since problem was related to mock expects (_call instead of findOneByLabel which was removed from the tag repository)
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index c5df1e03..459c4172 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -337,10 +337,6 @@ class WallabagRestController extends FOSRestController | |||
337 | ->getRepository('WallabagCoreBundle:Entry') | 337 | ->getRepository('WallabagCoreBundle:Entry') |
338 | ->removeTag($this->getUser()->getId(), $tag); | 338 | ->removeTag($this->getUser()->getId(), $tag); |
339 | 339 | ||
340 | $em = $this->getDoctrine()->getManager(); | ||
341 | $em->remove($tag); | ||
342 | $em->flush(); | ||
343 | |||
344 | $json = $this->get('serializer')->serialize($tag, 'json'); | 340 | $json = $this->get('serializer')->serialize($tag, 'json'); |
345 | 341 | ||
346 | return $this->renderJsonResponse($json); | 342 | return $this->renderJsonResponse($json); |