Skip to content

Commit 625513d

Browse files
Fix merge
1 parent 7fa2eab commit 625513d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public function testSingleChoice()
234234

235235
public function testSingleChoiceAttributesWithMainAttributes()
236236
{
237-
$form = $this->factory->createNamed('name', 'choice', '&a', array(
237+
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
238238
'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
239239
'choices_as_values' => true,
240240
'multiple' => false,
@@ -258,7 +258,7 @@ public function testSingleChoiceAttributesWithMainAttributes()
258258

259259
public function testSingleExpandedChoiceAttributesWithMainAttributes()
260260
{
261-
$form = $this->factory->createNamed('name', 'choice', '&a', array(
261+
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
262262
'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
263263
'choices_as_values' => true,
264264
'multiple' => false,

src/Symfony/Component/Form/Tests/AbstractLayoutTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public function testSingleChoiceAttributes()
643643

644644
public function testSingleChoiceAttributesWithMainAttributes()
645645
{
646-
$form = $this->factory->createNamed('name', 'choice', '&a', array(
646+
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
647647
'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
648648
'choices_as_values' => true,
649649
'multiple' => false,
@@ -667,7 +667,7 @@ public function testSingleChoiceAttributesWithMainAttributes()
667667

668668
public function testSingleExpandedChoiceAttributesWithMainAttributes()
669669
{
670-
$form = $this->factory->createNamed('name', 'choice', '&a', array(
670+
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
671671
'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
672672
'choices_as_values' => true,
673673
'multiple' => false,

0 commit comments

Comments
 (0)