File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,16 @@ protected function tearDown()
70
70
* @param string $searchQuery
71
71
* @param array $attributeWeights
72
72
* @param array $expectedProductNames
73
- * @param string|null $incompleteReason
74
73
* @return void
75
74
*/
76
75
public function testAttributeSearchWeight (
77
76
string $ searchQuery ,
78
77
array $ attributeWeights ,
79
- array $ expectedProductNames ,
80
- string $ incompleteReason = null
78
+ array $ expectedProductNames
81
79
): 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
+ );
85
83
$ this ->updateAttributesWeight ($ attributeWeights );
86
84
$ actualProductNames = $ this ->quickSearchByQuery ->execute ($ searchQuery )->getColumnValues ('name ' );
87
85
$ this ->assertEquals ($ expectedProductNames , $ actualProductNames , 'Products order is not as expected. ' );
@@ -145,9 +143,7 @@ public function attributeSearchWeightDataProvider(): array
145
143
[
146
144
'Xbox ' ,
147
145
'Nintendo Wii ' ,
148
- ],
149
- 'incomplete_reason ' => 'MC-33824: '
150
- . 'Stabilize skipped test cases for Integration AttributeSearchWeightTest with elasticsearch ' ,
146
+ ]
151
147
],
152
148
];
153
149
}
You can’t perform that action at this time.
0 commit comments