Skip to content

Commit

Permalink
44702 update unit test (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeneastgate authored Jul 22, 2024
1 parent 03c55fe commit d6363a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/TestClassInstalledLanguageReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public function testreadAvailableLanguageNamesUsingNativeName()
'en_GB' => 'English (UK)',
'en_US' => 'English (United States)',
'es_ES' => 'Español',
'de_CH' => 'Deutsch (Schweiz)',
], $availableLanguages);
}

Expand All @@ -58,6 +59,6 @@ public function testGetAvailableLanguageKeys()
{
$pInstalledLanguageReader = new InstalledLanguageReader;
$availableLanguages = $pInstalledLanguageReader->getAvailableLanguageKeys();
$this->assertEquals(['en_US', 'de_DE', 'en_GB', 'es_ES', 'ja_JP'], $availableLanguages);
$this->assertEquals(['en_US', 'de_DE', 'en_GB', 'es_ES', 'ja_JP', 'de_CH'], $availableLanguages);
}
}

0 comments on commit d6363a4

Please sign in to comment.