Remove redundant testGetMulti() assertion
authorAaron Schulz <aschulz@wikimedia.org>
Fri, 4 Dec 2015 20:31:01 +0000 (12:31 -0800)
committerOri.livneh <ori@wikimedia.org>
Fri, 4 Dec 2015 21:03:09 +0000 (21:03 +0000)
Change-Id: Iadbf39de9c6be2baeb7c2f7c1dce39e9f2bed2e4

tests/phpunit/includes/libs/objectcache/WANObjectCacheTest.php

index e2c6ac7..1511557 100644 (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 );