Skip to content

Commit

Permalink
Fix TranslatorTest not expecting the default locale as being "available"
Browse files Browse the repository at this point in the history
refs #7063
  • Loading branch information
Johannes Meyer committed Sep 3, 2014
1 parent ef84780 commit 8e5deb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/php/library/Icinga/Util/TranslatorTest.php
Expand Up @@ -27,7 +27,7 @@ public function setUp()
public function testWhetherGetAvailableLocaleCodesReturnsAllAvailableLocaleCodes()
{
$this->assertEquals(
array('de_DE', 'fr_FR'),
array(Translator::DEFAULT_LOCALE, 'de_DE', 'fr_FR'),
Translator::getAvailableLocaleCodes(),
'Translator::getAvailableLocaleCodes does not return all available locale codes'
);
Expand Down

0 comments on commit 8e5deb8

Please sign in to comment.