Browse Source

Investigating if app veyor like this test better

Jose Lorenzo Rodriguez 11 years ago
parent
commit
c9b0bde42e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Utility/NumberTest.php

+ 1 - 1
tests/TestCase/Utility/NumberTest.php

@@ -350,7 +350,7 @@ class NumberTest extends TestCase {
 		$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);
 	}