try to fix caching

This commit is contained in:
Dennis Eichhorn 2019-12-07 20:50:12 +01:00
parent 70734dfd83
commit 18d457efa6
2 changed files with 0 additions and 2 deletions

View File

@ -48,7 +48,6 @@ class MemCachedTest extends \PHPUnit\Framework\TestCase
{
self::assertEquals('', $this->cache->getPrefix());
self::assertEquals(CacheType::MEMCACHED, $this->cache->getType());
self::assertTrue(\is_dir(__DIR__ . '/Cache'));
self::assertTrue($this->cache->flushAll());
self::assertEquals(50, $this->cache->getThreshold());
self::assertNull($this->cache->get('test'));

View File

@ -48,7 +48,6 @@ class RedisCacheTest extends \PHPUnit\Framework\TestCase
{
self::assertEquals('', $this->cache->getPrefix());
self::assertEquals(CacheType::REDIS, $this->cache->getType());
self::assertTrue(\is_dir(__DIR__ . '/Cache'));
self::assertTrue($this->cache->flushAll());
self::assertEquals(50, $this->cache->getThreshold());
self::assertNull($this->cache->get('test'));