aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php
diff options
context:
space:
mode:
authorAlexander Vorwerk <alexander.vorwerk@stud.uni-goettingen.de>2022-01-12 21:13:39 +0100
committerAlexander Vorwerk <alexander.vorwerk@stud.uni-goettingen.de>2022-01-27 22:04:16 +0100
commitdecbaf4f384cd53912c0d21762b2b64309cb30f0 (patch)
treed9716312fc58ed176ad02c2860005e523c275d75 /tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php
parente05dde5bc4bcfa5b636272978ff9be5100aebe94 (diff)
downloadmediawikicore-decbaf4f384cd53912c0d21762b2b64309cb30f0.tar.gz
mediawikicore-decbaf4f384cd53912c0d21762b2b64309cb30f0.zip
phpunit: use ->getServiceContainer() in integration tests
Change-Id: I38299cb65eeaadfdc0eb05db4e8c0b0119cfb37d
Diffstat (limited to 'tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php')
-rw-r--r--tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php b/tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php
index 9ed77adb2693..b5f69b217f2a 100644
--- a/tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php
+++ b/tests/phpunit/includes/language/LanguageFallbackIntegrationTest.php
@@ -1,7 +1,6 @@
<?php
use MediaWiki\Languages\LanguageFallback;
-use MediaWiki\MediaWikiServices;
/**
* @coversDefaultClass MediaWiki\Languages\LanguageFallback
@@ -18,7 +17,7 @@ class LanguageFallbackIntegrationTest extends MediaWikiIntegrationTestCase {
$this->setService( 'LocalisationCache', $this->getMockLocalisationCache(
1, $options['fallbackMap'] ) );
}
- return MediaWikiServices::getInstance()->getLanguageFallback();
+ return $this->getServiceContainer()->getLanguageFallback();
}
private function getMessagesKey() {