]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS 3153/head
authorThomas Citharel <tcit@tcit.fr>
Sun, 28 May 2017 10:59:48 +0000 (12:59 +0200)
committerThomas Citharel <tcit@tcit.fr>
Sun, 28 May 2017 10:59:48 +0000 (12:59 +0200)
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
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');