diff --git a/tests/DataStorage/Cache/Connection/RedisCacheTest.php b/tests/DataStorage/Cache/Connection/RedisCacheTest.php index 4a7ef799a..494f3f525 100644 --- a/tests/DataStorage/Cache/Connection/RedisCacheTest.php +++ b/tests/DataStorage/Cache/Connection/RedisCacheTest.php @@ -231,18 +231,6 @@ class RedisCacheTest extends \PHPUnit\Framework\TestCase self::assertNull($this->cache->get('key2', 1)); } - /** - * @testdox Expired cache data can be deleted if equal expiration is defined - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache - * @group framework - */ - public function testDeleteExpired() : void - { - $this->cache->set('key4', 'testVal4', 1); - \sleep(2); - self::assertTrue($this->cache->delete('key4', 1)); - } - /** * @testdox A bad cache status will prevent all cache actions * @covers phpOMS\DataStorage\Cache\Connection\RedisCache