Browse Source

[Form] fixed test

Fabien Potencier 14 năm trước cách đây
mục cha
commit
07be5bf484
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tests/Symfony/Tests/Component/Form/FormBuilderTest.php

+ 1 - 1
tests/Symfony/Tests/Component/Form/FormBuilderTest.php

@@ -97,7 +97,7 @@ class FormBuilderTest extends \PHPUnit_Framework_TestCase
 
     public function testCreateNoTypeNoDataClass()
     {
-        $this->setExpectedException('Symfony\Component\Form\Exception\FormException', 'The data class must be set to automatically create children');
+        $this->setExpectedException('Symfony\Component\Form\Exception\FormException', 'The "foo" type cannot be guessed as the data class is not set. Provide the type manually (\'text\', \'password\', ...) or set the data class.');
         $this->builder->create('foo');
     }