From 3191c704a12a7afdc037f89da5a60590ebda59d7 Mon Sep 17 00:00:00 2001 From: Eriksen Costa Date: Mon, 6 Aug 2012 00:43:51 -0300 Subject: [PATCH] [Validator] fixed tests, ICU 4.4 (Travis version) does not have the "my" locale --- .../Validator/Tests/Constraints/LocaleValidatorTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Tests/Constraints/LocaleValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/LocaleValidatorTest.php index bb5e944c3f..01e4b76609 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/LocaleValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/LocaleValidatorTest.php @@ -78,7 +78,8 @@ class LocaleValidatorTest extends LocalizedTestCase return array( array('en'), array('en_US'), - array('my'), + array('pt'), + array('pt_PT'), array('zh_Hans'), ); }