summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php')
-rw-r--r--MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php b/MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php
index 44ad2147..4d2fb0a6 100644
--- a/MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php
+++ b/MLEB/Translate/tests/phpunit/ffs/AmdFFSTest.php
@@ -11,20 +11,20 @@
/**
* @see AmdFFS
*/
-class AmdFFSTest extends MediaWikiTestCase {
+class AmdFFSTest extends MediaWikiIntegrationTestCase {
- public function setUp() {
+ public function setUp() : void {
parent::setUp();
$this->groupConfiguration = [
'BASIC' => [
- 'class' => 'FileBasedMessageGroup',
+ 'class' => FileBasedMessageGroup::class,
'id' => 'test-id',
'label' => 'Test Label',
'namespace' => 'NS_MEDIAWIKI',
'description' => 'Test description',
],
'FILES' => [
- 'class' => 'AmdFFS',
+ 'class' => AmdFFS::class,
'sourcePattern' => 'fake_reference_not_used_in_practise',
'targetPattern' => 'fake_reference_not_used_in_practise',
],