From: Philipp Holzer Date: Fri, 9 Nov 2018 19:39:47 +0000 (+0100) Subject: skipping TTL tests X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7aae40ae6ac18abc19f4f6fe4174beff68dd93a2;p=friendica.git skipping TTL tests --- diff --git a/tests/src/Core/Cache/CacheTest.php b/tests/src/Core/Cache/CacheTest.php index 86bf5e7f01..e51ce745f0 100644 --- a/tests/src/Core/Cache/CacheTest.php +++ b/tests/src/Core/Cache/CacheTest.php @@ -123,6 +123,8 @@ abstract class CacheTest extends DatabaseTest * @medium */ function testTTL() { + $this->markTestSkipped('taking too much time without mocking'); + $this->assertNull($this->instance->get('value1')); $value = 'foobar'; diff --git a/tests/src/Core/Lock/LockTest.php b/tests/src/Core/Lock/LockTest.php index a7bbea265f..78f2271e54 100644 --- a/tests/src/Core/Lock/LockTest.php +++ b/tests/src/Core/Lock/LockTest.php @@ -116,6 +116,8 @@ abstract class LockTest extends DatabaseTest * @medium */ function testLockTTL() { + $this->markTestSkipped('taking too much time without mocking'); + $this->assertFalse($this->instance->isLocked('foo')); $this->assertFalse($this->instance->isLocked('bar'));