Skip to content

Commit 254a69f

Browse files
Merge pull request #896 from michaelkubina/maintenance_collection_testrun
[MAINTENANCE] Change variable type to match parameter in collection testrun
2 parents e2efbb7 + f43a7ff commit 254a69f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Functional/Common/SolrIndexingTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ public function canSearchInCollections()
133133
$collections = $this->collectionRepository->findCollectionsBySettings([
134134
'index_name' => ['Musik', 'Projekt: Dresdner Hefte'],
135135
]);
136-
$musik = $collections[0];
137-
$dresdnerHefte = $collections[1];
136+
$musik[] = $collections[0];
137+
$dresdnerHefte[] = $collections[1];
138138

139139
$settings = [
140140
'solrcore' => $core->solr->core,

0 commit comments

Comments
 (0)