Add @covers tags to objectcache tests
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / objectcache / ReplicatedBagOStuffTest.php
index a419f5b..1b502ec 100644 (file)
@@ -13,10 +13,10 @@ class ReplicatedBagOStuffTest extends MediaWikiTestCase {
 
                $this->writeCache = new HashBagOStuff();
                $this->readCache = new HashBagOStuff();
-               $this->cache = new ReplicatedBagOStuff( array(
+               $this->cache = new ReplicatedBagOStuff( [
                        'writeFactory' => $this->writeCache,
                        'readFactory' => $this->readCache,
-               ) );
+               ] );
        }
 
        /**