aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/api/ApiMainTest.php
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2021-09-04 00:52:31 +0200
committerUmherirrender <umherirrender_de.wp@web.de>2021-09-04 00:52:31 +0200
commit2e4ee47c3d179a43b36a0cf11dc1e74f8e692b29 (patch)
tree23724369ccf4ba3b0e4d9620486a089a55b0fe87 /tests/phpunit/includes/api/ApiMainTest.php
parentc9e8d7e49dfcbd04ca2f59ca8928f0995856b70a (diff)
downloadmediawikicore-2e4ee47c3d179a43b36a0cf11dc1e74f8e692b29.tar.gz
mediawikicore-2e4ee47c3d179a43b36a0cf11dc1e74f8e692b29.zip
Cleanup mixed space/tab line indent
Change-Id: I833052a656b1ce419c0929f6f0514f2a33c2c4cc
Diffstat (limited to 'tests/phpunit/includes/api/ApiMainTest.php')
-rw-r--r--tests/phpunit/includes/api/ApiMainTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/phpunit/includes/api/ApiMainTest.php b/tests/phpunit/includes/api/ApiMainTest.php
index 27ceed9e4083..7a45b2d7b960 100644
--- a/tests/phpunit/includes/api/ApiMainTest.php
+++ b/tests/phpunit/includes/api/ApiMainTest.php
@@ -1026,9 +1026,9 @@ class ApiMainTest extends ApiTestCase {
$apiEx1->getStatusValue()->fatal( new ApiRawMessage( 'Another error', 'sv-error2' ) );
$badMsg = $this->getMockBuilder( ApiRawMessage::class )
- ->setConstructorArgs( [ 'An error', 'ignored' ] )
- ->onlyMethods( [ 'getApiCode' ] )
- ->getMock();
+ ->setConstructorArgs( [ 'An error', 'ignored' ] )
+ ->onlyMethods( [ 'getApiCode' ] )
+ ->getMock();
$badMsg->method( 'getApiCode' )->willReturn( "bad\nvalue" );
$apiEx2 = new ApiUsageException( null, StatusValue::newFatal( $badMsg ) );