]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Lock/MemcacheCacheLockDriverTest.php
Config FollowUp
[friendica.git] / tests / src / Core / Lock / MemcacheCacheLockDriverTest.php
index 46f29f52e2f9da8a758f2d3a68e9e063bfa390d6..0e118c5dd76ef5badf98182685dd85ed30c4ae80 100644 (file)
@@ -15,12 +15,12 @@ class MemcacheCacheLockDriverTest extends LockTest
        {
                $this->configCache
                        ->shouldReceive('get')
-                       ->with('system', 'memcache_host', NULL)
+                       ->with('system', 'memcache_host', NULL, false)
                        ->andReturn('localhost');
 
                $this->configCache
                        ->shouldReceive('get')
-                       ->with('system', 'memcache_port', NULL)
+                       ->with('system', 'memcache_port', NULL, false)
                        ->andReturn(11211);
 
                return new CacheLockDriver(CacheDriverFactory::create('memcache'));