We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f1e1a commit 9cc4371Copy full SHA for 9cc4371
lib/Cake/Test/Case/Cache/Engine/MemcacheEngineTest.php
@@ -361,7 +361,7 @@ public function testClear() {
361
Cache::write('some_value', 'cache1', 'memcache');
362
$result = Cache::clear(true, 'memcache');
363
$this->assertTrue($result);
364
- $this->assertEquals(false, Cache::read('some_value', 'memcache'));
+ $this->assertEquals('cache1', Cache::read('some_value', 'memcache'));
365
366
Cache::write('some_value', 'cache2', 'memcache2');
367
$result = Cache::clear(false, 'memcache');
0 commit comments