summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php')
-rw-r--r--www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php b/www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php
index 3208ab01..0908f3f9 100644
--- a/www/wiki/extensions/Translate/tests/phpunit/TranslationStashStorageTest.php
+++ b/www/wiki/extensions/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 );