Skip to content

Commit 4aa1e86

Browse files
Fix merge
1 parent c8233b1 commit 4aa1e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Extension/Core/Type/ChoiceTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,7 +1339,7 @@ public function testSubmitMultipleExpandedNumericChoices()
13391339

13401340
public function testSingleSelectedObjectChoices()
13411341
{
1342-
$form = $this->factory->create('choice', $this->objectChoices[3], array(
1342+
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', $this->objectChoices[3], array(
13431343
'multiple' => false,
13441344
'expanded' => false,
13451345
'choices' => $this->objectChoices,
@@ -1357,7 +1357,7 @@ public function testSingleSelectedObjectChoices()
13571357

13581358
public function testMultipleSelectedObjectChoices()
13591359
{
1360-
$form = $this->factory->create('choice', array($this->objectChoices[3]), array(
1360+
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', array($this->objectChoices[3]), array(
13611361
'multiple' => true,
13621362
'expanded' => false,
13631363
'choices' => $this->objectChoices,

0 commit comments

Comments
 (0)