Skip to content

Commit 0a8ded4

Browse files
author
Prabhu Ram
committed
MC-33272: FIx QuickOrder Suggest in b2b to work with Elasticsearch
- unskipped search test
1 parent 9e6400e commit 0a8ded4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Catalog/ProductSearchTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,9 +1643,9 @@ public function testSearchAndSortByRelevance()
16431643
$productsInResponse = ['Blue briefs','Navy Blue Striped Shoes','Grey shorts'];
16441644
/** @var \Magento\Config\Model\Config $config */
16451645
$config = Bootstrap::getObjectManager()->get(\Magento\Config\Model\Config::class);
1646-
if (strpos($config->getConfigDataValue('catalog/search/engine'), 'elasticsearch') !== false) {
1647-
$this->markTestIncomplete('MC-20716');
1648-
}
1646+
// if (strpos($config->getConfigDataValue('catalog/search/engine'), 'elasticsearch') !== false) {
1647+
// $this->markTestIncomplete('MC-20716');
1648+
// }
16491649
$count = count($response['products']['items']);
16501650
for ($i = 0; $i < $count; $i++) {
16511651
$this->assertEquals($productsInResponse[$i], $response['products']['items'][$i]['name']);

0 commit comments

Comments
 (0)