Skip to content

Commit cf528c8

Browse files
committed
fixes sone more PHP-CS reportings
Signed-off-by: Stefan Gehrig <[email protected]>
1 parent d9d04c0 commit cf528c8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/Gedmo/Tree/Issue/Issue2582Test.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public function testInsertTwoRootsInOneFlush(): void
3737
$ou2 = new OU('00000000-0000-0000-0000-000000000002', null);
3838
$ou21 = new OU('00000000-0000-0000-0000-000000000021', $ou2);
3939

40-
4140
$this->em->persist($ou1);
4241
$this->em->persist($ou11);
4342
$this->em->persist($ou2);
@@ -73,7 +72,6 @@ public function testInsertTwoRootsInOneFlushRootsFirst(): void
7372
$ou2 = new OU('00000000-0000-0000-0000-000000000002', null);
7473
$ou21 = new OU('00000000-0000-0000-0000-000000000021', $ou2);
7574

76-
7775
$this->em->persist($ou1);
7876
$this->em->persist($ou2);
7977
$this->em->persist($ou11);
@@ -109,7 +107,6 @@ public function testInsertTwoRootsInTwoFlushes(): void
109107
$ou2 = new OU('00000000-0000-0000-0000-000000000002', null);
110108
$ou21 = new OU('00000000-0000-0000-0000-000000000021', $ou2);
111109

112-
113110
$this->em->persist($ou1);
114111
$this->em->persist($ou11);
115112
$this->em->flush();
@@ -150,6 +147,7 @@ protected function getUsedEntityFixtures(): array
150147
private function fetchAllOUs(): array
151148
{
152149
$categoryRepo = $this->em->getRepository(OU::class);
150+
153151
return $categoryRepo
154152
->createQueryBuilder('ou')
155153
->orderBy('ou.left', 'ASC')

0 commit comments

Comments
 (0)