Remove redundant testGetMulti() assertion

Change-Id: Iadbf39de9c6be2baeb7c2f7c1dce39e9f2bed2e4
This commit is contained in:
Aaron Schulz 2015-12-04 12:31:01 -08:00 committed by Ori.livneh
parent c1b6cde12c
commit 2ca76c62d0

View file

@ -247,7 +247,8 @@ class WANObjectCacheTest extends MediaWikiTestCase {
$curTTLs = array();
$this->assertEquals(
array( $key1 => $value1, $key2 => $value2 ),
$cache->getMulti( array( $key1, $key2, $key3 ), $curTTLs )
$cache->getMulti( array( $key1, $key2, $key3 ), $curTTLs ),
'Result array populated'
);
$this->assertEquals( 2, count( $curTTLs ), "Two current TTLs in array" );
@ -256,12 +257,6 @@ class WANObjectCacheTest extends MediaWikiTestCase {
$cKey1 = wfRandomString();
$cKey2 = wfRandomString();
$curTTLs = array();
$this->assertEquals(
array( $key1 => $value1, $key2 => $value2 ),
$cache->getMulti( array( $key1, $key2, $key3 ), $curTTLs ),
'Result array populated'
);
$priorTime = microtime( true );
usleep( 1 );