@@ -709,7 +709,7 @@ public function testChoiceRowWithCustomBlock()
709709
710710 public function testSingleChoiceExpandedWithLabelsAsFalse ()
711711 {
712- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
712+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
713713 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
714714 'choices_as_values ' => true ,
715715 'choice_label ' => false ,
@@ -732,7 +732,7 @@ public function testSingleChoiceExpandedWithLabelsAsFalse()
732732
733733 public function testSingleChoiceExpandedWithLabelsSetByCallable ()
734734 {
735- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
735+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
736736 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' , 'Choice&C ' => '&c ' ),
737737 'choices_as_values ' => true ,
738738 'choice_label ' => function ($ choice , $ label , $ value ) {
@@ -764,7 +764,7 @@ public function testSingleChoiceExpandedWithLabelsSetByCallable()
764764
765765 public function testSingleChoiceExpandedWithLabelsSetFalseByCallable ()
766766 {
767- $ form = $ this ->factory ->createNamed ('name ' , 'choice ' , '&a ' , array (
767+ $ form = $ this ->factory ->createNamed ('name ' , 'Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , '&a ' , array (
768768 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
769769 'choices_as_values ' => true ,
770770 'choice_label ' => function () {
@@ -789,7 +789,7 @@ public function testSingleChoiceExpandedWithLabelsSetFalseByCallable()
789789
790790 public function testMultipleChoiceExpandedWithLabelsAsFalse ()
791791 {
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 (
793793 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
794794 'choices_as_values ' => true ,
795795 'choice_label ' => false ,
@@ -812,7 +812,7 @@ public function testMultipleChoiceExpandedWithLabelsAsFalse()
812812
813813 public function testMultipleChoiceExpandedWithLabelsSetByCallable ()
814814 {
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 (
816816 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' , 'Choice&C ' => '&c ' ),
817817 'choices_as_values ' => true ,
818818 'choice_label ' => function ($ choice , $ label , $ value ) {
@@ -844,7 +844,7 @@ public function testMultipleChoiceExpandedWithLabelsSetByCallable()
844844
845845 public function testMultipleChoiceExpandedWithLabelsSetFalseByCallable ()
846846 {
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 (
848848 'choices ' => array ('Choice&A ' => '&a ' , 'Choice&B ' => '&b ' ),
849849 'choices_as_values ' => true ,
850850 'choice_label ' => function () {
0 commit comments