Skip to content

Commit 61db6a7

Browse files
authored
Merge branch 'develop' into master
2 parents b150619 + c5dff0b commit 61db6a7

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)