@@ -709,7 +709,7 @@ public function testChoiceRowWithCustomBlock()
709
709
710
710
public function testSingleChoiceExpandedWithLabelsAsFalse ()
711
711
{
712
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
712
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
713
713
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
714
714
'choices_as_values ' => true ,
715
715
'choice_label ' => false ,
@@ -732,7 +732,7 @@ public function testSingleChoiceExpandedWithLabelsAsFalse()
732
732
733
733
public function testSingleChoiceExpandedWithLabelsSetByCallable ()
734
734
{
735
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
735
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
736
736
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' , 'Choice&C ' => '&c ' ),
737
737
'choices_as_values ' => true ,
738
738
'choice_label ' => function ($ choice , $ label , $ value ) {
@@ -764,7 +764,7 @@ public function testSingleChoiceExpandedWithLabelsSetByCallable()
764
764
765
765
public function testSingleChoiceExpandedWithLabelsSetFalseByCallable ()
766
766
{
767
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
767
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
768
768
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
769
769
'choices_as_values ' => true ,
770
770
'choice_label ' => function () {
@@ -789,7 +789,7 @@ public function testSingleChoiceExpandedWithLabelsSetFalseByCallable()
789
789
790
790
public function testMultipleChoiceExpandedWithLabelsAsFalse ()
791
791
{
792
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , array ('&a ' ), array (
792
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , array ('&a ' ), array (
793
793
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
794
794
'choices_as_values ' => true ,
795
795
'choice_label ' => false ,
@@ -812,7 +812,7 @@ public function testMultipleChoiceExpandedWithLabelsAsFalse()
812
812
813
813
public function testMultipleChoiceExpandedWithLabelsSetByCallable ()
814
814
{
815
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , array ('&a ' ), array (
815
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , array ('&a ' ), array (
816
816
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' , 'Choice&C ' => '&c ' ),
817
817
'choices_as_values ' => true ,
818
818
'choice_label ' => function ($ choice , $ label , $ value ) {
@@ -844,7 +844,7 @@ public function testMultipleChoiceExpandedWithLabelsSetByCallable()
844
844
845
845
public function testMultipleChoiceExpandedWithLabelsSetFalseByCallable ()
846
846
{
847
- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , array ('&a ' ), array (
847
+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , array ('&a ' ), array (
848
848
'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
849
849
'choices_as_values ' => true ,
850
850
'choice_label ' => function () {
0 commit comments