From 1118fbdae74b66ae20034ff8d567484a796399c7 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 22 Apr 2011 08:41:58 +0200 Subject: [PATCH] [Validator] fixed unit test --- .../Component/Validator/Constraints/ChoiceValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php b/tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php index 91e5ed1389..f498a91c97 100644 --- a/tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php +++ b/tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php @@ -135,7 +135,7 @@ class ChoiceValidatorTest extends \PHPUnit_Framework_TestCase { $constraint = new Choice(array( 'choices' => array('foo', 'bar'), - 'message' => 'myMessage', + 'multipleMessage' => 'myMessage', 'multiple' => true, ));