summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/LocalisationCacheTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/LocalisationCacheTest.php')
-rw-r--r--tests/phpunit/includes/LocalisationCacheTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/phpunit/includes/LocalisationCacheTest.php b/tests/phpunit/includes/LocalisationCacheTest.php
index 356db87c..b34847aa 100644
--- a/tests/phpunit/includes/LocalisationCacheTest.php
+++ b/tests/phpunit/includes/LocalisationCacheTest.php
@@ -5,15 +5,15 @@ class LocalisationCacheTest extends MediaWikiTestCase {
$cache = Language::getLocalisationCache();
$this->assertEquals(
- $cache->getItem( 'ru', 'pluralRules' ),
- $cache->getItem( 'os', 'pluralRules' ),
- 'os plural rules (undefined) fallback to ru (defined)'
+ $cache->getItem( 'ar', 'pluralRules' ),
+ $cache->getItem( 'arz', 'pluralRules' ),
+ 'arz plural rules (undefined) fallback to ar (defined)'
);
$this->assertEquals(
- $cache->getItem( 'ru', 'compiledPluralRules' ),
- $cache->getItem( 'os', 'compiledPluralRules' ),
- 'os compiled plural rules (undefined) fallback to ru (defined)'
+ $cache->getItem( 'ar', 'compiledPluralRules' ),
+ $cache->getItem( 'arz', 'compiledPluralRules' ),
+ 'arz compiled plural rules (undefined) fallback to ar (defined)'
);
$this->assertNotEquals(