Merge "installer: Replace bad calls to getText() on DBQueryError exceptions"
[lhc/web/wiklou.git] / tests / phpunit / includes / exception / UserNotLoggedInTest.php
index 644de0b..55ec45a 100644 (file)
@@ -10,7 +10,7 @@ class UserNotLoggedInTest extends MediaWikiTestCase {
                $e = new UserNotLoggedIn();
                $this->assertEquals( 'exception-nologin', $e->title );
                $this->assertEquals( 'exception-nologin-text', $e->msg );
-               $this->assertEquals( array(), $e->params );
+               $this->assertEquals( [], $e->params );
        }
 
 }