]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Cache/ArrayCacheTest.php
Merge pull request #10918 from nupplaphil/feat/core_new_paradigm
[friendica.git] / tests / src / Core / Cache / ArrayCacheTest.php
index 6ce6d4c1faeb535c0e85db260ed3f8e310a1e468..3623fe0c185872c63ad60a36245fcce3f7df342b 100644 (file)
@@ -21,7 +21,7 @@
 
 namespace Friendica\Test\src\Core\Cache;
 
-use Friendica\Core\Cache\ArrayCache;
+use Friendica\Core\Cache\Type\ArrayCache;
 
 class ArrayCacheTest extends MemoryCacheTest
 {
@@ -31,15 +31,19 @@ class ArrayCacheTest extends MemoryCacheTest
                return $this->cache;
        }
 
-       protected function tearDown()
+       protected function tearDown(): void
        {
                $this->cache->clear(false);
                parent::tearDown();
        }
 
+       /**
+        * @doesNotPerformAssertions
+        */
        public function testTTL()
        {
                // Array Cache doesn't support TTL
+               self::markTestSkipped("Array Cache doesn't support TTL");
                return true;
        }
 }