8000 fixed deprecation notices in tests · symfony/symfony@996251c · GitHub
[go: up one dir, main page]

Skip to content

Commit 996251c

Browse files
committed
fixed deprecation notices in tests
1 parent 5c23542 commit 996251c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public function testExpandedChoiceListWithScalarValues()
202202

203203
public function testExpandedChoiceListWithBooleanAndNullValues()
204204
{
205-
$view = $this->factory->create('choice', null, array(
205+
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
206206
'choices' => $this->booleanChoicesWithNull,
207207
'choices_as_values' => true,
208208
'expanded' => true,
@@ -229,7 +229,7 @@ public function testExpandedChoiceListWithScalarValuesAndFalseAsPreSetData()
229229

230230
public function testExpandedChoiceListWithBooleanAndNullValuesAndFalseAsPreSetData()
231231
{
232-
$view = $this->factory->create('choice', false, array(
232+
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array(
233233
'choices' => $this->booleanChoicesWithNull,
234234
'choices_as_values' => true,
235235
'expanded' => true,

0 commit comments

Comments
 (0)
0