From ab64da5671ec161ab73aba07fc011bc8de56ae41 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 15 Dec 2012 18:28:15 +0100 Subject: [PATCH] [Locale] fixed a test --- src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php b/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php index 568ee1ead3..112812b122 100644 --- a/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php +++ b/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php @@ -67,7 +67,7 @@ class StubLocaleTest extends LocaleTestCase public function testGetCurrenciesData() { - $symbol = $this->isSameAsIcuVersion('4.8') ? 'BR$' : 'R$'; + $symbol = $this->isGreaterOrEqualThanIcuVersion('4.8') ? 'BR$' : 'R$'; $currencies = StubLocale::getCurrenciesData('en'); $this->assertEquals($symbol, $currencies['BRL']['symbol']);