Skip to content

Commit

Permalink
Fix invalid index_query in collection test data.
Browse files Browse the repository at this point in the history
  • Loading branch information
haogatyp committed Feb 6, 2023
1 parent 37d924d commit cdf1b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Functional/Repository/CollectionRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public function canGetIndexNameForSolr(): void
$result = $indexName->fetchAllAssociative();
$this->assertEquals(1, $indexName->rowCount());
$this->assertEquals('Geschichte', $result[0]['index_name']);
$this->assertEquals('GeschichteSearch', $result[0]['index_query']);
$this->assertEquals('*:*', $result[0]['index_query']);
$this->assertEquals('1103', $result[0]['uid']);

$indexName = $this->collectionRepository->getIndexNameForSolr(
Expand Down

0 comments on commit cdf1b27

Please sign in to comment.