diff options
Diffstat (limited to 'MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php')
-rw-r--r-- | MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php b/MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php index 3208ab01..0908f3f9 100644 --- a/MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php +++ b/MLEB/Translate/tests/phpunit/TranslationStashStorageTest.php @@ -2,7 +2,7 @@ /** * @file * @author Niklas Laxström - * @license GPL-2.0+ + * @license GPL-2.0-or-later */ /** @@ -17,14 +17,14 @@ class TranslationStashStorageTest extends MediaWikiTestCase { User::newFromId( 1 ), Title::makeTitle( NS_MAIN, __METHOD__ ), 'test value', - array( 'kissa', 'kala' ) + [ 'kissa', 'kala' ] ); $translation2 = new StashedTranslation( User::newFromId( 2 ), Title::makeTitle( NS_MAIN, __METHOD__ ), 'test value 2', - array( 'kissa', 'kala' ) + [ 'kissa', 'kala' ] ); $storage->addTranslation( $translation1 ); |