From 41ce4029ac538647a7224d697124375c5935f1d2 Mon Sep 17 00:00:00 2001 From: Jules Pietri Date: Thu, 28 Apr 2016 16:37:06 +0200 Subject: [PATCH] [Form] Fix tests added in #18180 --- .../Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php | 2 -- 1 file changed, 2 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 125358949bc62..f36b2286fd086 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php @@ -153,7 +153,6 @@ public function testExpandedChoiceListWithBooleanAndNullValues() { $view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array( 'choices' => $this->booleanChoicesWithNull, - 'choices_as_values' => true, 'expanded' => true, ))->createView(); @@ -179,7 +178,6 @@ public function testExpandedChoiceListWithBooleanAndNullValuesAndFalseAsPreSetDa { $view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array( 'choices' => $this->booleanChoicesWithNull, - 'choices_as_values' => true, 'expanded' => true, ))->createView();