]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Cache/ArrayCacheTest.php
Merge branch 'develop' of https://github.com/friendica/friendica into develop
[friendica.git] / tests / src / Core / Cache / ArrayCacheTest.php
index 0297a3b13c89a90310af73cef73c0dd0dfe43270..ada1fac6549a4e8d88efe6791ac5f709922e2243 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,7 +31,7 @@ class ArrayCacheTest extends MemoryCacheTest
                return $this->cache;
        }
 
-       protected function tearDown()
+       protected function tearDown(): void
        {
                $this->cache->clear(false);
                parent::tearDown();
@@ -40,6 +40,7 @@ class ArrayCacheTest extends MemoryCacheTest
        public function testTTL()
        {
                // Array Cache doesn't support TTL
+               self::markTestSkipped("Array Cache doesn't support TTL");
                return true;
        }
 }