]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Cache/ArrayCacheTest.php
Merge pull request #10257 from annando/apcontact-no-normalize
[friendica.git] / tests / src / Core / Cache / ArrayCacheTest.php
index 6ce6d4c1faeb535c0e85db260ed3f8e310a1e468..c2e92806ce94920342366f3203f1048e614d85dd 100644 (file)
@@ -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;
        }
 }