@@ -685,7 +685,7 @@ public function testSubmitSingleNonExpandedObjectChoices()
685
685
686
686
public function testSubmitSingleChoiceWithEmptyData ()
687
687
{
688
- $ form = $ this ->factory ->create ('choice ' , null , array (
688
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
689
689
'multiple ' => false ,
690
690
'expanded ' => false ,
691
691
'choices ' => array ('test ' ),
@@ -700,7 +700,7 @@ public function testSubmitSingleChoiceWithEmptyData()
700
700
701
701
public function testSubmitMultipleChoiceWithEmptyData ()
702
702
{
703
- $ form = $ this ->factory ->create ('choice ' , null , array (
703
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
704
704
'multiple ' => true ,
705
705
'expanded ' => false ,
706
706
'choices ' => array ('test ' ),
@@ -715,7 +715,7 @@ public function testSubmitMultipleChoiceWithEmptyData()
715
715
716
716
public function testSubmitSingleChoiceExpandedWithEmptyData ()
717
717
{
718
- $ form = $ this ->factory ->create ('choice ' , null , array (
718
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
719
719
'multiple ' => false ,
720
720
'expanded ' => true ,
721
721
'choices ' => array ('test ' ),
@@ -730,7 +730,7 @@ public function testSubmitSingleChoiceExpandedWithEmptyData()
730
730
731
731
public function testSubmitMultipleChoiceExpandedWithEmptyData ()
732
732
{
733
- $ form = $ this ->factory ->create ('choice ' , null , array (
733
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
734
734
'multiple ' => true ,
735
735
'expanded ' => true ,
736
736
'choices ' => array ('test ' ),
0 commit comments