]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Lock/ArrayCacheLockTest.php
Merge pull request #11195 from annando/issue-10966
[friendica.git] / tests / src / Core / Lock / ArrayCacheLockTest.php
index 6ddedfa438b3bfeb6d1d9aa283aeab1461ae3605..d47342db44e907bb69a032e8c8a1ae7778d5b0a4 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 namespace Friendica\Test\src\Core\Lock;
 
-use Friendica\Core\Cache\ArrayCache;
-use Friendica\Core\Lock\CacheLock;
+use Friendica\Core\Cache\Type\ArrayCache;
+use Friendica\Core\Lock\Type\CacheLock;
 
 class ArrayCacheLockTest extends LockTest
 {
        protected function getInstance()
        {
-               return new CacheLock(new ArrayCache('localhost'));
+               return new \Friendica\Core\Lock\Type\CacheLock(new ArrayCache('localhost'));
        }
 
+       /**
+        * @doesNotPerformAssertions
+        */
        public function testLockTTL()
        {
                self::markTestSkipped("ArrayCache doesn't support TTL");