We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c081478 commit 7ee0e79Copy full SHA for 7ee0e79
tests/integration/Core/Repository/ContentServiceTest.php
@@ -6735,7 +6735,13 @@ private function createParentLocationsForHideReveal(int $parentLocationId): arra
6735
$this->createFolder([self::ENG_US => 'P3'], $parentLocationId)->contentInfo->mainLocationId,
6736
];
6737
6738
- return array_values($this->locationService->loadLocationList($parentFoldersLocationsIds));
+ $locations = $this->locationService->loadLocationList($parentFoldersLocationsIds);
6739
+ $locationsArray = [];
6740
+ foreach ($locations as $location) {
6741
+ $locationsArray[] = $location;
6742
+ }
6743
+
6744
+ return array_values($locationsArray);
6745
}
6746
6747
/**
0 commit comments