Skip to content

Commit

Permalink
EZP-26775: skip Fulltext Location search with Elasticsearch engine
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed Dec 23, 2016
1 parent fba31a1 commit d0777bd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Repository/Tests/SearchServiceTest.php
Expand Up @@ -4461,6 +4461,13 @@ function ($a, $b) {
*/
public function testFulltextLocationSearchComplex(array $data)
{
$setupFactory = $this->getSetupFactory();
if ($setupFactory instanceof LegacyElasticsearch) {
$this->markTestIncomplete(
'Fulltext criterion is not supported with Location search in Elasticsearch engine'
);
}

// Do not initialize from scratch
$repository = $this->getRepository(false);
list($criterion, $content1, $content2, $content3) = $data;
Expand Down

0 comments on commit d0777bd

Please sign in to comment.