]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php
CS
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / Helper / TagsAssignerTest.php
index bc59eeabcd3b06923201e6292b92d624146e72e9..6d6d648432a9bb715df59c381be1f7b3402e74cb 100644 (file)
@@ -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');