Bläddra i källkod

[Form] fixed test

Fabien Potencier 14 år sedan
förälder
incheckning
07be5bf484
1 ändrade filer med 1 tillägg och 1 borttagningar
  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');
     }