Skip to content

Commit 7605821

Browse files
committed
Code Style
1 parent 2de0cbf commit 7605821

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/LiveComponent/tests/Functional/Form/ComponentWithFormTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use Symfony\Component\DomCrawler\Crawler;
1818
use Symfony\Component\Form\FormFactoryInterface;
1919
use Symfony\UX\LiveComponent\LiveComponentHydrator;
20-
use Symfony\UX\LiveComponent\Tests\Fixtures\Component\FormComponentWithManyDifferentFieldsType;
2120
use Symfony\UX\LiveComponent\Tests\Fixtures\Component\FormWithCollectionTypeComponent;
2221
use Symfony\UX\LiveComponent\Tests\Fixtures\Form\BlogPostFormType;
2322
use Symfony\UX\TwigComponent\ComponentFactory;
@@ -162,8 +161,8 @@ public function testHandleCheckboxChanges(): void
162161
'initialData' => [
163162
'choice_multiple' => [2],
164163
'select_multiple' => [2],
165-
'checkbox_checked' => true
166-
]
164+
'checkbox_checked' => true,
165+
],
167166
]
168167
);
169168

src/LiveComponent/tests/Unit/Form/ComponentWithFormTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testFormValues(): void
2828
$component->initialData = [
2929
'choice_multiple' => [2],
3030
'select_multiple' => [2],
31-
'checkbox_checked' => true
31+
'checkbox_checked' => true,
3232
];
3333
$component->postMount([]);
3434

0 commit comments

Comments
 (0)