diff options
Diffstat (limited to 'MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php')
-rw-r--r-- | MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php b/MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php index 9e76454d..357314f2 100644 --- a/MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php +++ b/MLEB/Translate/tests/phpunit/ffs/DtdFFSTest.php @@ -9,18 +9,18 @@ * @license GPL-2.0-or-later */ -class DtdFFSTest extends MediaWikiTestCase { +class DtdFFSTest extends MediaWikiIntegrationTestCase { protected $groupConfiguration = [ 'BASIC' => [ - 'class' => 'FileBasedMessageGroup', + 'class' => FileBasedMessageGroup::class, 'id' => 'test-id', 'label' => 'Test Label', 'namespace' => 'NS_MEDIAWIKI', 'description' => 'Test description', ], 'FILES' => [ - 'class' => 'DtdFFS', + 'class' => DtdFFS::class, ], ]; |