File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
app/code/Magento/Elasticsearch/Test/Unit/Model/Adapter
dev/tests/integration/testsuite/Magento/Elasticsearch7/SearchAdapter Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class ElasticsearchTest extends TestCase
111
111
*/
112
112
protected function setUp (): void
113
113
{
114
- if (!class_exists (\Elasticsearch \ClientBuilder ::class)) {
114
+ if (!class_exists (\Elasticsearch \Client ::class)) {
115
115
$ this ->markTestSkipped ('AC-6597: Skipped as Elasticsearch 8 is configured ' );
116
116
}
117
117
Original file line number Diff line number Diff line change 166
166
"magento/module-open-search" : " *" ,
167
167
"magento/module-elasticsearch" : " *" ,
168
168
"magento/module-elasticsearch-7" : " *" ,
169
+ "magento/module-elasticsearch-8" : " *" ,
169
170
"magento/module-email" : " *" ,
170
171
"magento/module-encryption-key" : " *" ,
171
172
"magento/module-fedex" : " *" ,
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ protected function setUp(): void
43
43
*/
44
44
public function testCorrectElasticsearchClientEs7 ()
45
45
{
46
+ if (!class_exists (\Elasticsearch \Client::class)) {
47
+ $ this ->markTestSkipped ('AC-6597: Skipped as Elasticsearch 8 is configured ' );
48
+ }
49
+
46
50
$ connection = $ this ->connectionManager ->getConnection ();
47
51
$ this ->assertInstanceOf (Elasticsearch::class, $ connection );
48
52
}
You can’t perform that action at this time.
0 commit comments