diff --git a/tests/TestCase/Utility/NumberTest.php b/tests/TestCase/Utility/NumberTest.php index 9fd9a3c8152..af8bf9ebc1e 100644 --- a/tests/TestCase/Utility/NumberTest.php +++ b/tests/TestCase/Utility/NumberTest.php @@ -350,7 +350,7 @@ public function testCurrencyIntlCode() { $expected = 'EUR 123.00'; $this->assertEquals($expected, $result); - $result = $this->Number->currency($value, 'EUR', ['useIntlCode' => true, 'locale' => 'fr_FR']); + $result = $this->Number->currency($value, 'EUR', ['useIntlCode' => true, 'locale' => 'da_DK']); $expected = '123,00 EUR'; $this->assertEquals($expected, $result); }