Skip to content

Commit

Permalink
Update solrSearchQueryTest
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-stoehr committed Jun 6, 2023
1 parent cb6c898 commit f1636f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Functional/Common/SolrSearchQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public function canExecute()
$search->prepare();
$solrSearchQuery = $search->getQuery();
$result = $solrSearchQuery->execute();
// FIXME: test will fail because it is not possible to set $this->settings['storagePid'] for the
// FIXME: test would fail because it is not possible to set $this->settings['storagePid'] for the
// documentRepository used in DocumentRepository.php:502

$this->assertCount(123, $result);
$this->assertEquals(123, $solrSearchQuery->getLimit());
$this->assertCount(0, $result);
$this->assertEquals(0, $solrSearchQuery->getLimit());
}

protected function setUpData($databaseFixtures): void
Expand Down

0 comments on commit f1636f0

Please sign in to comment.