From 3f5740ba037ae0db29f2d9862a933442255441e6 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 26 Sep 2015 16:09:05 +0300 Subject: [PATCH] StatusTest.php: Make lines shorter to make phpcs happier Change-Id: Ibe2034fb8d1849f3c0f98d4c4c3ffcb8277e416b --- tests/phpunit/includes/StatusTest.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/phpunit/includes/StatusTest.php b/tests/phpunit/includes/StatusTest.php index 291ed31554..7ec898fedd 100644 --- a/tests/phpunit/includes/StatusTest.php +++ b/tests/phpunit/includes/StatusTest.php @@ -64,7 +64,16 @@ class StatusTest extends MediaWikiLangTestCase { $this->assertTrue( $status->ok ); $status = Status::newFatal( 'foo', 1, 2 ); $this->assertFalse( $status->ok ); - $this->assertArrayEquals( array( array( 'type' => 'error', 'message' => 'foo', 'params' => array( 1, 2 ) ) ), $status->errors ); + $this->assertArrayEquals( + array( + array( + 'type' => 'error', + 'message' => 'foo', + 'params' => array( 1, 2 ) + ) + ), + $status->errors + ); } /** -- 2.20.1