We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156bf4c commit c548ae2Copy full SHA for c548ae2
tests/Elasticsearch/Tests/Utility.php
@@ -30,7 +30,7 @@ public static function getHost(): ?string
30
case 'oss':
31
return 'http://localhost:9200';
32
case 'xpack':
33
- return 'https://elastic:changeme@instance:9200';
+ return 'https://elastic:changeme@localhost:9200';
34
}
35
return null;
36
tests/Elasticsearch/Tests/YamlRunnerTest.php
@@ -159,7 +159,7 @@ public function setUp()
159
if (getenv('TEST_SUITE') === 'xpack') {
160
$this->client->setSSLVerification(__DIR__ . '/../../../.ci/certs/ca.crt');
161
162
- $this->client->build();
+ $this->client = $this->client->build();
163
164
165
public function tearDown()
0 commit comments