]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Lock/RedisCacheLockDriverTest.php
Config FollowUp
[friendica.git] / tests / src / Core / Lock / RedisCacheLockDriverTest.php
index 0c9deea16e3ba9124d43e526f4fa0d7f8e53a3fd..f5d0a648fba29a4bf415ac02e19b19726ee5d211 100644 (file)
@@ -15,12 +15,12 @@ class RedisCacheLockDriverTest extends LockTest
        {
                $this->configCache
                        ->shouldReceive('get')
-                       ->with('system', 'redis_host', NULL)
+                       ->with('system', 'redis_host', NULL, false)
                        ->andReturn('localhost');
 
                $this->configCache
                        ->shouldReceive('get')
-                       ->with('system', 'redis_port', NULL)
+                       ->with('system', 'redis_port', NULL, false)
                        ->andReturn(null);
 
                return new CacheLockDriver(CacheDriverFactory::create('redis'));