From 7336d712184573b08369b067da00a4e1bdf49053 Mon Sep 17 00:00:00 2001 From: Ji Lu Date: Wed, 16 Jan 2019 16:12:37 -0600 Subject: [PATCH] MQE-1145: Update FrontendExecutor::authorize() method. --- .../DataGenerator/Persist/Curl/FrontendExecutor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magento/FunctionalTestingFramework/DataGenerator/Persist/Curl/FrontendExecutor.php b/src/Magento/FunctionalTestingFramework/DataGenerator/Persist/Curl/FrontendExecutor.php index 0a82e88a6..7e7485a82 100644 --- a/src/Magento/FunctionalTestingFramework/DataGenerator/Persist/Curl/FrontendExecutor.php +++ b/src/Magento/FunctionalTestingFramework/DataGenerator/Persist/Curl/FrontendExecutor.php @@ -82,7 +82,7 @@ public function __construct($customerEmail, $customerPassWord) private function authorize() { $url = $this->getBaseUrl() . 'customer/account/login/'; - $this->transport->write($url); + $this->transport->write($url, [], CurlInterface::GET); $this->read(); $url = $this->getBaseUrl() . 'customer/account/loginPost/';