]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Lock/APCuCacheLockTest.php
Merge pull request #8075 from annando/html-escaping
[friendica.git] / tests / src / Core / Lock / APCuCacheLockTest.php
index c9610132548bdbc5705c59bee12d08960cb83316..c2437178108ff0cae6ea8b4a271b9486d6c6013b 100644 (file)
@@ -3,8 +3,11 @@
 namespace Friendica\Test\src\Core\Lock;
 
 use Friendica\Core\Cache\APCuCache;
-use Friendica\Core\Lock\CacheLockDriver;
+use Friendica\Core\Lock\CacheLock;
 
+/**
+ * @group APCU
+ */
 class APCuCacheLockTest extends LockTest
 {
        protected function setUp()
@@ -18,6 +21,6 @@ class APCuCacheLockTest extends LockTest
 
        protected function getInstance()
        {
-               return new CacheLockDriver(new APCuCache('localhost'));
+               return new CacheLock(new APCuCache('localhost'));
        }
 }