mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Alias Config entity to ConfigEntity to not conflict with Craue Config
This commit is contained in:
parent
70d7c2af5f
commit
156158673f
3 changed files with 9 additions and 9 deletions
|
@ -5,7 +5,7 @@ namespace Tests\Wallabag\CoreBundle\Controller;
|
|||
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
||||
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
||||
use Wallabag\AnnotationBundle\Entity\Annotation;
|
||||
use Wallabag\CoreBundle\Entity\Config;
|
||||
use Wallabag\CoreBundle\Entity\Config as ConfigEntity;
|
||||
use Wallabag\CoreBundle\Entity\Entry;
|
||||
use Wallabag\CoreBundle\Entity\IgnoreOriginUserRule;
|
||||
use Wallabag\CoreBundle\Entity\Tag;
|
||||
|
@ -832,7 +832,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
|||
|
||||
$em->persist($user);
|
||||
|
||||
$config = new Config($user);
|
||||
$config = new ConfigEntity($user);
|
||||
|
||||
$config->setTheme('material');
|
||||
$config->setItemsPerPage(30);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue