]> 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 0297a3b13c89a90310af73cef73c0dd0dfe43270..c2e92806ce94920342366f3203f1048e614d85dd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -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;
        }
 }