@@ -102,7 +102,7 @@ public function testExpandedChoicesOptionsTurnIntoChildren()
102
102
103
103
public function testChoiceListWithScalarValues ()
104
104
{
105
- $ view = $ this ->factory ->create ('choice ' , null , array (
105
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
106
106
'choices ' => $ this ->scalarChoices ,
107
107
'choices_as_values ' => true ,
108
108
))->createView ();
@@ -117,7 +117,7 @@ public function testChoiceListWithScalarValues()
117
117
118
118
public function testChoiceListWithScalarValuesAndFalseAsPreSetData ()
119
119
{
120
- $ view = $ this ->factory ->create ('choice ' , false , array (
120
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
121
121
'choices ' => $ this ->scalarChoices ,
122
122
'choices_as_values ' => true ,
123
123
))->createView ();
@@ -127,7 +127,7 @@ public function testChoiceListWithScalarValuesAndFalseAsPreSetData()
127
127
128
128
public function testExpandedChoiceListWithScalarValues ()
129
129
{
130
- $ view = $ this ->factory ->create ('choice ' , null , array (
130
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
131
131
'choices ' => $ this ->scalarChoices ,
132
132
'choices_as_values ' => true ,
133
133
'expanded ' => true ,
@@ -140,7 +140,7 @@ public function testExpandedChoiceListWithScalarValues()
140
140
141
141
public function testExpandedChoiceListWithScalarValuesAndFalseAsPreSetData ()
142
142
{
143
- $ view = $ this ->factory ->create ('choice ' , false , array (
143
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
144
144
'choices ' => $ this ->scalarChoices ,
145
145
'choices_as_values ' => true ,
146
146
'expanded ' => true ,
@@ -209,7 +209,7 @@ public function testPlaceholderNotPresentIfEmptyChoice()
209
209
210
210
public function testPlaceholderWithBooleanChoices ()
211
211
{
212
- $ form = $ this ->factory ->create ('choice ' , null , array (
212
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
213
213
'multiple ' => false ,
214
214
'expanded ' => false ,
215
215
'required ' => false ,
@@ -231,7 +231,7 @@ public function testPlaceholderWithBooleanChoices()
231
231
232
232
public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData ()
233
233
{
234
- $ form = $ this ->factory ->create ('choice ' , false , array (
234
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
235
235
'multiple ' => false ,
236
236
'expanded ' => false ,
237
237
'required ' => false ,
@@ -253,7 +253,7 @@ public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData()
253
253
254
254
public function testPlaceholderWithExpandedBooleanChoices ()
255
255
{
256
- $ form = $ this ->factory ->create ('choice ' , null , array (
256
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
257
257
'multiple ' => false ,
258
258
'expanded ' => true ,
259
259
'required ' => false ,
@@ -278,7 +278,7 @@ public function testPlaceholderWithExpandedBooleanChoices()
278
278
279
279
public function testPlaceholderWithExpandedBooleanChoicesAndWithFalseAsPreSetData ()
280
280
{
281
- $ form = $ this ->factory ->create ('choice ' , false , array (
281
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
282
282
'multiple ' => false ,
283
283
'expanded ' => true ,
284
284
'required ' => false ,
0 commit comments