Skip to content

Commit d593c30

Browse files
committed
fix FQCN in tests added by #17694
1 parent 1b6029b commit d593c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Form/Type/EntityTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ public function testOverrideChoicesValues()
773773

774774
$this->persist(array($entity1, $entity2));
775775

776-
$field = $this->factory->createNamed('name', 'entity', null, array(
776+
$field = $this->factory->createNamed('name', 'Symfony\Bridge\Doctrine\Form\Type\EntityType', null, array(
777777
'em' => 'default',
778778
'class' => self::SINGLE_IDENT_CLASS,
779779
'choice_label' => 'name',
@@ -795,7 +795,7 @@ public function testOverrideChoicesValuesWithCallable()
795795

796796
$this->persist(array($entity1, $entity2));
797797

798-
$field = $this->factory->createNamed('name', 'entity', null, array(
798+
$field = $this->factory->createNamed('name', 'Symfony\Bridge\Doctrine\Form\Type\EntityType', null, array(
799799
'em' => 'default',
800800
'class' => self::ITEM_GROUP_CLASS,
801801
'choice_label' => 'name',

0 commit comments

Comments
 (0)