Skip to content

Commit

Permalink
Merge branch '3.0' into 3.1
Browse files Browse the repository at this point in the history
* 3.0:
  [Form] fixed ChoiceTypeTest after #17822
  • Loading branch information
nicolas-grekas committed Jun 29, 2016
2 parents 4976c7f + 46b379b commit fe6841c
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -590,7 +590,6 @@ public function testSubmitSingleChoiceWithEmptyData()
'multiple' => false,
'expanded' => false,
'choices' => array('test'),
'choices_as_values' => true,
'empty_data' => 'test',
));

Expand All @@ -605,7 +604,6 @@ public function testSubmitMultipleChoiceWithEmptyData()
'multiple' => true,
'expanded' => false,
'choices' => array('test'),
'choices_as_values' => true,
'empty_data' => array('test'),
));

Expand All @@ -620,7 +618,6 @@ public function testSubmitSingleChoiceExpandedWithEmptyData()
'multiple' => false,
'expanded' => true,
'choices' => array('test'),
'choices_as_values' => true,
'empty_data' => 'test',
));

Expand All @@ -635,7 +632,6 @@ public function testSubmitMultipleChoiceExpandedWithEmptyData()
'multiple' => true,
'expanded' => true,
'choices' => array('test'),
'choices_as_values' => true,
'empty_data' => array('test'),
));

Expand Down

0 comments on commit fe6841c

Please sign in to comment.