diff --git a/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php b/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php index 112812b1224c1..568ee1ead32a1 100644 --- a/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php +++ b/src/Symfony/Component/Locale/Tests/Stub/StubLocaleTest.php @@ -67,7 +67,7 @@ public function testGetCurrenciesDataWithUnsupportedLocale() public function testGetCurrenciesData() { - $symbol = $this->isGreaterOrEqualThanIcuVersion('4.8') ? 'BR$' : 'R$'; + $symbol = $this->isSameAsIcuVersion('4.8') ? 'BR$' : 'R$'; $currencies = StubLocale::getCurrenciesData('en'); $this->assertEquals($symbol, $currencies['BRL']['symbol']);