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