Skip to content
This repository was archived by the owner on May 18, 2025. It is now read-only.

Commit e837d93

Browse files
committed
💚 fixed test memcached is available in automated testing
1 parent ac3e93f commit e837d93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/BoostCacheTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ public function testCoreDrivers(): void
4343
$this->assertNotNull(BoostCache::file());
4444
$this->assertNotNull(BoostCache::apcu());
4545
$this->assertNotNull(BoostCache::memory());
46+
$this->assertNotNull(BoostCache::memcached());
4647
}
4748

4849
public function testNonCoreDrivers(): void
4950
{
5051
$cache = BoostCache::singleton();
51-
$this->assertNull(BoostCache::memcached());
5252
$this->assertNull(BoostCache::sqlite());
5353
$this->assertNull(BoostCache::mysql());
5454
$this->assertNull(BoostCache::redis());

0 commit comments

Comments
 (0)