Skip to content

Commit 77622a5

Browse files
committed
MC-33394: Deliver major change Elasticsearch stories
1 parent 652b4f8 commit 77622a5

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/AttributeSearchWeightTest.php

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,16 @@ protected function tearDown()
7070
* @param string $searchQuery
7171
* @param array $attributeWeights
7272
* @param array $expectedProductNames
73-
* @param string|null $incompleteReason
7473
* @return void
7574
*/
7675
public function testAttributeSearchWeight(
7776
string $searchQuery,
7877
array $attributeWeights,
79-
array $expectedProductNames,
80-
string $incompleteReason = null
78+
array $expectedProductNames
8179
): void {
82-
if ($incompleteReason) {
83-
$this->markTestIncomplete($incompleteReason);
84-
}
80+
$this->markTestSkipped(
81+
'MC-33824: Stabilize skipped test cases for Integration AttributeSearchWeightTest with Elasticsearch'
82+
);
8583
$this->updateAttributesWeight($attributeWeights);
8684
$actualProductNames = $this->quickSearchByQuery->execute($searchQuery)->getColumnValues('name');
8785
$this->assertEquals($expectedProductNames, $actualProductNames, 'Products order is not as expected.');
@@ -145,9 +143,7 @@ public function attributeSearchWeightDataProvider(): array
145143
[
146144
'Xbox',
147145
'Nintendo Wii',
148-
],
149-
'incomplete_reason' => 'MC-33824:'
150-
. 'Stabilize skipped test cases for Integration AttributeSearchWeightTest with elasticsearch',
146+
]
151147
],
152148
];
153149
}

0 commit comments

Comments
 (0)