diff --git a/Repository/Tests/SearchServiceTest.php b/Repository/Tests/SearchServiceTest.php index c497f919d..81785a3bd 100644 --- a/Repository/Tests/SearchServiceTest.php +++ b/Repository/Tests/SearchServiceTest.php @@ -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;