8000 [WIP] [2.8] [Form] fix FQCN in tests added by #17760 by HeahDude · Pull Request #17759 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WIP] [2.8] [Form] fix FQCN in tests added by #17760 #17759

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function testExpandedFlippedChoicesOptionsTurnIntoChildren()

public function testChoiceListWithScalarValues()
{
$view = $this->factory->create('choice', null, array(
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
'choices' => $this->scalarChoices,
'choices_as_values' => true,
))->createView();
Expand All @@ -173,7 +173,7 @@ public function testChoiceListWithScalarValues()

public function testChoiceListWithScalarValuesAndFalseAsPreSetData()
{
$view = $this->factory->create('choice', false, array(
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array(
'choices' => $this->scalarChoices,
'choices_as_values' => true,
))->createView();
Expand All @@ -183,7 +183,7 @@ public function testChoiceListWithScalarValuesAndFalseAsPreSetData()

public function testExpandedChoiceListWithScalarValues()
{
$view = $this->factory->create('choice', null, array(
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
'choices' => $this->scalarChoices,
'choices_as_values' => true,
'expanded' => true,
Expand All @@ -196,7 +196,7 @@ public function testExpandedChoiceListWithScalarValues()

public function testExpandedChoiceListWithScalarValuesAndFalseAsPreSetData()
{
$view = $this->factory->create('choice', false, array(
$view = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array(
'choices' => $this->scalarChoices,
'choices_as_values' => true,
'expanded' => true,
Expand Down Expand Up @@ -269,7 +269,7 @@ public function testPlaceholderNotPresentIfEmptyChoice()

public function testPlaceholderWithBooleanChoices()
{
$form = $this->factory->create('choice', null, array(
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
'multiple' => false,
'expanded' => false,
'required' => false,
Expand All @@ -291,7 +291,7 @@ public function testPlaceholderWithBooleanChoices()

public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData()
{
$form = $this->factory->create('choice', false, array(
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array(
'multiple' => false,
'expanded' => false,
'required' => false,
Expand All @@ -313,7 +313,7 @@ public function testPlaceholderWithBooleanChoicesWithFalseAsPreSetData()

public function testPlaceholderWithExpandedBooleanChoices()
{
$form = $this->factory->create('choice', null, array(
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
'multiple' => false,
'expanded' => true,
'required' => false,
Expand All @@ -338,7 +338,7 @@ public function testPlaceholderWithExpandedBooleanChoices()

public function testPlaceholderWithExpandedBooleanChoicesAndWithFalseAsPreSetData()
{
$form = $this->factory->create('choice', false, array(
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', false, array(
'multiple' => false,
'expanded' => true,
'required' => false,
Expand Down
0