Skip to content

Commit c5dff0b

Browse files
authored
Merge pull request #295 from magento-gl/ACQE-4968-doctor-command-fix
Acqe 4968 doctor command fix
2 parents a077bf9 + dfd99b2 commit c5dff0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Magento/FunctionalTestingFramework/Console/DoctorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ private function runMagentoWebDriverDoctor()
198198
unset($settings['modules']['config'][$magentoWebDriver]);
199199

200200
$dispatcher = new EventDispatcher();
201-
$suiteManager = new SuiteManager($dispatcher, self::SUITE, $settings);
201+
$suiteManager = new SuiteManager($dispatcher, self::SUITE, $settings, []);
202202
try {
203203
$suiteManager->initialize();
204204
$this->context = ['Successful'];

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriverDoctor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ private function connectToSeleniumServer()
9191
$this->capabilities,
9292
$this->connectionTimeoutInMs,
9393
$this->requestTimeoutInMs,
94-
$this->httpProxy,
95-
$this->httpProxyPort
94+
$this->config['http_proxy'],
95+
$this->config['http_proxy_port']
9696
);
9797
if (null !== $this->remoteWebDriver) {
9898
return;

0 commit comments

Comments
 (0)