Skip to content

Commit 8c4c118

Browse files
committed
MQE-1352: bug fix in dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli.php
1 parent dff3e6a commit 8c4c118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function authorize()
9999

100100
$this->transport->write($authUrl, $data, CurlInterface::POST);
101101
$response = $this->read();
102-
if (strpos($response, 'login-form')) {
102+
if (strpos($response, 'login-form') !== false) {
103103
continue;
104104
}
105105
$isAuthorized = true;

0 commit comments

Comments
 (0)