[Validators] Fixed failing tests requiring ICU 52.1 which are skipped otherwise

This commit is contained in:
Bernhard Schussek 2014-08-18 18:29:10 +02:00
parent f825f5d1c3
commit 5440ed5c38
4 changed files with 4 additions and 6 deletions

View File

@ -82,7 +82,7 @@ class CountryValidatorTest extends AbstractConstraintValidatorTest
$this->validator->validate($country, $constraint);
$this->assertViolation('myMessage', array(
'{{ value }}' => $country,
'{{ value }}' => '"'.$country.'"',
));
}

View File

@ -96,7 +96,7 @@ class CurrencyValidatorTest extends AbstractConstraintValidatorTest
$this->validator->validate($currency, $constraint);
$this->assertViolation('myMessage', array(
'{{ value }}' => $currency,
'{{ value }}' => '"'.$currency.'"',
));
}

View File

@ -14,7 +14,6 @@ namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Intl\Util\IntlTestHelper;
use Symfony\Component\Validator\Constraints\Language;
use Symfony\Component\Validator\Constraints\LanguageValidator;
use Symfony\Component\Validator\Validation;
class LanguageValidatorTest extends AbstractConstraintValidatorTest
{
@ -83,7 +82,7 @@ class LanguageValidatorTest extends AbstractConstraintValidatorTest
$this->validator->validate($language, $constraint);
$this->assertViolation('myMessage', array(
'{{ value }}' => $language,
'{{ value }}' => '"'.$language.'"',
));
}

View File

@ -14,7 +14,6 @@ namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Intl\Util\IntlTestHelper;
use Symfony\Component\Validator\Constraints\Locale;
use Symfony\Component\Validator\Constraints\LocaleValidator;
use Symfony\Component\Validator\Validation;
class LocaleValidatorTest extends AbstractConstraintValidatorTest
{
@ -85,7 +84,7 @@ class LocaleValidatorTest extends AbstractConstraintValidatorTest
$this->validator->validate($locale, $constraint);
$this->assertViolation('myMessage', array(
'{{ value }}' => $locale,
'{{ value }}' => '"'.$locale.'"',
));
}