mirror of https://github.com/wallabag/wallabag.git
Avoid error when Redis isn't here in tests
This commit is contained in:
parent
c99d90455b
commit
e40bed3607
|
@ -54,6 +54,7 @@ class ChromeControllerTest extends WallabagCoreTestCase
|
|||
|
||||
public function testImportChromeWithRedisEnabled()
|
||||
{
|
||||
$this->checkRedis();
|
||||
$this->logInAs('admin');
|
||||
$client = $this->getClient();
|
||||
$client->getContainer()->get('craue_config')->set('import_with_redis', 1);
|
||||
|
|
|
@ -54,6 +54,7 @@ class FirefoxControllerTest extends WallabagCoreTestCase
|
|||
|
||||
public function testImportFirefoxWithRedisEnabled()
|
||||
{
|
||||
$this->checkRedis();
|
||||
$this->logInAs('admin');
|
||||
$client = $this->getClient();
|
||||
$client->getContainer()->get('craue_config')->set('import_with_redis', 1);
|
||||
|
|
Loading…
Reference in New Issue