minor #25454 [Form] fix how form type is referenced in test (xabbuh)

This PR was merged into the 2.8 branch.

Discussion
----------

[Form] fix how form type is referenced in test

| Q             | A
| ------------- | ---
| Branch?       | 2.8
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Commits
-------

f859ae9 [Form] fix how form type is referenced in test
This commit is contained in:
Nicolas Grekas 2017-12-12 09:56:51 +01:00
commit bff5014aa4

View File

@ -1979,7 +1979,7 @@ abstract class AbstractBootstrap3LayoutTest extends AbstractLayoutTest
public function testMoneyWithoutCurrency()
{
$form = $this->factory->createNamed('name', 'money', 1234.56, array(
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType', 1234.56, array(
'currency' => false,
));