[Form] fix how form type is referenced in test

This commit is contained in:
Christian Flothmann 2017-12-12 09:37:06 +01:00
parent fb52f94722
commit f859ae9f1e

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