Skip to content

Commit 753ba6d

Browse files
committed
Fix test for travis
1 parent 39b4abe commit 753ba6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Form/Tests/Extension/Core/DataMapper/PropertyPathMapperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ public function testMapDataToFormsIgnoresUninitializedProperties()
122122
$engineForm = new Form(new FormConfigBuilder('engine', \stdClass::class, $this->dispatcher));
123123
$colorConfig = new FormConfigBuilder('color', \stdClass::class, $this->dispatcher);
124124
$color = new \stdClass();
125-
$colorConfig->setData($color);
126125
$colorForm = new Form($colorConfig);
126+
$colorForm->setData($color);
127127

128128
$car = new TypehintedPropertiesCar();
129129
$car->engine = new \stdClass();

0 commit comments

Comments
 (0)