@@ -158,7 +158,7 @@ public function testExpandedFlippedChoicesOptionsTurnIntoChildren()
158
158
159
159
public function testChoiceListWithScalarValues ()
160
160
{
161
- $ view = $ this ->factory ->create ('choice ' , null , array (
161
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
162
162
'choices ' => $ this ->scalarChoices ,
163
163
'choices_as_values ' => true ,
164
164
))->createView ();
@@ -173,7 +173,7 @@ public function testChoiceListWithScalarValues()
173
173
174
174
public function testChoiceListWithScalarValuesAndFalseAsPreSetData ()
175
175
{
176
- $ view = $ this ->factory ->create ('choice ' , false , array (
176
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
177
177
'choices ' => $ this ->scalarChoices ,
178
178
'choices_as_values ' => true ,
179
179
))->createView ();
@@ -183,7 +183,7 @@ public function testChoiceListWithScalarValuesAndFalseAsPreSetData()
183
183
184
184
public function testExpandedChoiceListWithScalarValues ()
185
185
{
186
- $ view = $ this ->factory ->create ('choice ' , null , array (
186
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
187
187
'choices ' => $ this ->scalarChoices ,
188
188
'choices_as_values ' => true ,
189
189
'expanded ' => true ,
@@ -196,7 +196,7 @@ public function testExpandedChoiceListWithScalarValues()
196
196
197
197
public function testExpandedChoiceListWithScalarValuesAndFalseAsPreSetData ()
198
198
{
199
- $ view = $ this ->factory ->create ('choice ' , false , array (
199
+ $ view = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
200
200
'choices ' => $ this ->scalarChoices ,
201
201
'choices_as_values ' => true ,
202
202
'expanded ' => true ,
@@ -269,7 +269,7 @@ public function testPlaceholderNotPresentIfEmptyChoice()
269
269
270
270
public function testPlaceholderWithBooleanChoices ()
271
271
{
272
- $ form = $ this ->factory ->create ('choice ' , null , array (
272
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
273
273
'multiple ' => false ,
274
274
'expanded ' => false ,
275
275
'required ' => false ,
@@ -291,7 +291,7 @@ public function testPlaceholderWithBooleanChoices()
291
291
292
292
public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData ()
293
293
{
294
- $ form = $ this ->factory ->create ('choice ' , false , array (
294
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
295
295
'multiple ' => false ,
296
296
'expanded ' => false ,
297
297
'required ' => false ,
@@ -313,7 +313,7 @@ public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData()
313
313
314
314
public function testPlaceholderWithExpandedBooleanChoices ()
315
315
{
316
- $ form = $ this ->factory ->create ('choice ' , null , array (
316
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , null , array (
317
317
'multiple ' => false ,
318
318
'expanded ' => true ,
319
319
'required ' => false ,
@@ -338,7 +338,7 @@ public function testPlaceholderWithExpandedBooleanChoices()
338
338
339
339
public function testPlaceholderWithExpandedBooleanChoicesAndWithFalseAsPreSetData ()
340
340
{
341
- $ form = $ this ->factory ->create ('choice ' , false , array (
341
+ $ form = $ this ->factory ->create ('Symfony\Component\Form\Extension\Core\Type\ChoiceType ' , false , array (
342
342
'multiple ' => false ,
343
343
'expanded ' => true ,
344
344
'required ' => false ,
0 commit comments