MaintenanceTest.php: Make lines shorter to make phpcs happier
authorAmir E. Aharoni <amir.aharoni@mail.huji.ac.il>
Sat, 26 Sep 2015 11:19:17 +0000 (14:19 +0300)
committerReedy <reedy@wikimedia.org>
Sat, 26 Sep 2015 13:21:21 +0000 (13:21 +0000)
Change-Id: I76c23b1acdd50dc8dd423ef651a2fd1d7e5acba3

tests/phpunit/maintenance/MaintenanceTest.php

index e2fc824..454e9c1 100644 (file)
@@ -816,7 +816,10 @@ class MaintenanceTest extends MediaWikiTestCase {
         */
        public function testGetConfig() {
                $this->assertInstanceOf( 'Config', $this->m->getConfig() );
-               $this->assertSame( ConfigFactory::getDefaultInstance()->makeConfig( 'main' ), $this->m->getConfig() );
+               $this->assertSame(
+                       ConfigFactory::getDefaultInstance()->makeConfig( 'main' ),
+                       $this->m->getConfig()
+               );
        }
 
        /**