From 777c193f2af0dc68f9174cac710a2d9d15ca56d9 Mon Sep 17 00:00:00 2001 From: Jules Pietri Date: Wed, 29 Jun 2016 15:31:42 +0200 Subject: [PATCH] [Form] fixed ChoiceTypeTest after #17822 --- .../Form/Tests/Extension/Core/Type/ChoiceTypeTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php index 6052c63d39..1899005573 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php @@ -590,7 +590,6 @@ class ChoiceTypeTest extends \Symfony\Component\Form\Test\TypeTestCase 'multiple' => false, 'expanded' => false, 'choices' => array('test'), - 'choices_as_values' => true, 'empty_data' => 'test', )); @@ -605,7 +604,6 @@ class ChoiceTypeTest extends \Symfony\Component\Form\Test\TypeTestCase 'multiple' => true, 'expanded' => false, 'choices' => array('test'), - 'choices_as_values' => true, 'empty_data' => array('test'), )); @@ -620,7 +618,6 @@ class ChoiceTypeTest extends \Symfony\Component\Form\Test\TypeTestCase 'multiple' => false, 'expanded' => true, 'choices' => array('test'), - 'choices_as_values' => true, 'empty_data' => 'test', )); @@ -635,7 +632,6 @@ class ChoiceTypeTest extends \Symfony\Component\Form\Test\TypeTestCase 'multiple' => true, 'expanded' => true, 'choices' => array('test'), - 'choices_as_values' => true, 'empty_data' => array('test'), ));