From: Thomas Citharel Date: Sun, 28 May 2017 10:59:48 +0000 (+0200) Subject: CS X-Git-Tag: 2.3.0~31^2~87^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=de8d2a9005321a935e52f4471f031f73bb240412;p=github%2Fwallabag%2Fwallabag.git CS Signed-off-by: Thomas Citharel --- diff --git a/tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php b/tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php index bc59eeab..6d6d6484 100644 --- a/tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php +++ b/tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php @@ -2,21 +2,16 @@ namespace Tests\Wallabag\CoreBundle\Helper; -use Psr\Log\NullLogger; -use Wallabag\CoreBundle\Helper\ContentProxy; use Wallabag\CoreBundle\Entity\Entry; use Wallabag\CoreBundle\Entity\Tag; use Wallabag\CoreBundle\Helper\TagsAssigner; use Wallabag\UserBundle\Entity\User; use Wallabag\CoreBundle\Repository\TagRepository; -use Wallabag\CoreBundle\Helper\RuleBasedTagger; class TagsAssignerTest extends \PHPUnit_Framework_TestCase { - public function testAssignTagsWithArrayAndExtraSpaces() { - $tagRepo = $this->getTagRepositoryMock(); $tagsAssigner = new TagsAssigner($tagRepo); @@ -87,7 +82,6 @@ class TagsAssignerTest extends \PHPUnit_Framework_TestCase public function testAssignTagsNotFlushed() { - $tagRepo = $this->getTagRepositoryMock(); $tagRepo->expects($this->never()) ->method('__call');