]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Cache/RedisCacheDriverTest.php
Config FollowUp
[friendica.git] / tests / src / Core / Cache / RedisCacheDriverTest.php
index 0a3dba439d83ace9f5b254667e06d73e50de131f..d36e6b826e843fb8eb6e00ae51e27880ffdd47f8 100644 (file)
@@ -14,12 +14,12 @@ class RedisCacheDriverTest extends MemoryCacheTest
        {
                $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);
 
                $this->cache = CacheDriverFactory::create('redis');