소스 검색

[Validator] fixed unit test

Fabien Potencier 14 년 전
부모
커밋
1118fbdae7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php

+ 1 - 1
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,
         ));