diff options
author | addshore <addshorewiki@gmail.com> | 2020-06-30 16:09:24 +0100 |
---|---|---|
committer | addshore <addshorewiki@gmail.com> | 2020-06-30 17:02:22 +0100 |
commit | 959bc315f2f1c1dfdedf3602144d0217c7e5291a (patch) | |
tree | 37387eab4ba8af10851f8ae337f16bf8b21f3de8 /tests/phpunit/includes/api/ApiMessageTest.php | |
parent | 66f932e93b633710f4ffb424c059704469cf4336 (diff) | |
download | mediawikicore-959bc315f2f1c1dfdedf3602144d0217c7e5291a.tar.gz mediawikicore-959bc315f2f1c1dfdedf3602144d0217c7e5291a.zip |
MediaWikiTestCase to MediaWikiIntegrationTestCase
The name change happened some time ago, and I think its
about time to start using the name name!
(Done with a find and replace)
My personal motivation for doing this is that I have started
trying out vscode as an IDE for mediawiki development, and
right now it doesn't appear to handle php aliases very well
or at all.
Change-Id: I412235d91ae26e4c1c6a62e0dbb7e7cf3c5ed4a6
Diffstat (limited to 'tests/phpunit/includes/api/ApiMessageTest.php')
-rw-r--r-- | tests/phpunit/includes/api/ApiMessageTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/api/ApiMessageTest.php b/tests/phpunit/includes/api/ApiMessageTest.php index 70114c2593b6..7b806ac67610 100644 --- a/tests/phpunit/includes/api/ApiMessageTest.php +++ b/tests/phpunit/includes/api/ApiMessageTest.php @@ -5,7 +5,7 @@ use Wikimedia\TestingAccessWrapper; /** * @group API */ -class ApiMessageTest extends MediaWikiTestCase { +class ApiMessageTest extends MediaWikiIntegrationTestCase { private function compareMessages( Message $msg, Message $msg2 ) { $this->assertSame( $msg->getKey(), $msg2->getKey(), 'getKey' ); |