Updating memcacheEngine test case so it passes under phpunit.

This commit is contained in:
mark_story 2010-05-30 22:39:45 -04:00
parent fc79dc6232
commit 75d7b46a35

View file

@ -205,7 +205,7 @@ class MemcacheEngineTest extends CakeTestCase {
$this->assertEqual($result, $expecting);
$result = Cache::read('long_expiry_test');
$this->assertTrue($result);
$this->assertEquals($expecting, $result);
Cache::config('memcache', array('duration' => 3600));
}