diff --git a/app/code/Magento/AuthorizenetAcceptjs/etc/payment.xml b/app/code/Magento/AuthorizenetAcceptjs/etc/payment.xml
index b8292839c3bd1..b9f8d40b03006 100644
--- a/app/code/Magento/AuthorizenetAcceptjs/etc/payment.xml
+++ b/app/code/Magento/AuthorizenetAcceptjs/etc/payment.xml
@@ -9,7 +9,7 @@
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
- 1
+ 0
diff --git a/app/code/Magento/Catalog/Test/Mftf/Test/AdminCreateCategoryWithProductsGridFilter.xml b/app/code/Magento/Catalog/Test/Mftf/Test/AdminCreateCategoryWithProductsGridFilter.xml
index 7c24a8aba27bd..79eec02a828f6 100644
--- a/app/code/Magento/Catalog/Test/Mftf/Test/AdminCreateCategoryWithProductsGridFilter.xml
+++ b/app/code/Magento/Catalog/Test/Mftf/Test/AdminCreateCategoryWithProductsGridFilter.xml
@@ -28,6 +28,7 @@
+
diff --git a/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
index c405707ee7bbe..16c84047b529d 100644
--- a/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
+++ b/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
@@ -7,13 +7,21 @@
.rma-request-details,
.rma-wrapper .order-shipping-address {
float: left;
- #mix-grid .width(6,12);
+ /**
+ * @codingStandardsIgnoreStart
+ */
+ #mix-grid .width(6, 12);
+ //@codingStandardsIgnoreEnd
}
.rma-confirmation,
- .rma-wrapper .order-return-address {
+ .rma-wrapper .order-return-address, .rma-wrapper .order-shipping-method {
float: right;
- #mix-grid .width(6,12);
+ /**
+ * @codingStandardsIgnoreStart
+ */
+ #mix-grid .width(6, 12);
+ //@codingStandardsIgnoreEnd
}
}
diff --git a/dev/tests/integration/testsuite/Magento/AuthorizenetAcceptjs/Gateway/ConfigTest.php b/dev/tests/integration/testsuite/Magento/AuthorizenetAcceptjs/Gateway/ConfigTest.php
index 7e6aeda5a7a6d..a37f927274242 100644
--- a/dev/tests/integration/testsuite/Magento/AuthorizenetAcceptjs/Gateway/ConfigTest.php
+++ b/dev/tests/integration/testsuite/Magento/AuthorizenetAcceptjs/Gateway/ConfigTest.php
@@ -8,6 +8,7 @@
namespace Magento\AuthorizenetAcceptjs\Gateway;
+use Magento\Framework\Config\Data;
use Magento\Payment\Model\Method\Adapter;
use Magento\TestFramework\Helper\Bootstrap;
use Magento\TestFramework\ObjectManager;
@@ -40,5 +41,11 @@ public function testVerifyConfiguration()
$this->assertTrue($paymentAdapter->canUseInternal());
$this->assertTrue($paymentAdapter->canEdit());
$this->assertTrue($paymentAdapter->canFetchTransactionInfo());
+
+ /** @var Data $configReader */
+ $configReader = $this->objectManager->get('Magento\Payment\Model\Config\Data');
+ $value = $configReader->get('methods/authorizenet_acceptjs/allow_multiple_address');
+
+ $this->assertSame('0', $value);
}
}
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml
index 9bb00533a5da5..92e7b15efed29 100644
--- a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml
+++ b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml
@@ -69,5 +69,9 @@
-
dev/build/publication/sanity/ce.xml
+ -
+ app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
+ rma
+
diff --git a/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php b/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php
index 0e51c64661a4b..bc833bf3bb2d4 100644
--- a/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php
+++ b/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php
@@ -170,7 +170,6 @@ public function write($method, $url, $http_ver = '1.1', $headers = [], $body = '
// set url to post to
curl_setopt($this->_getResource(), CURLOPT_URL, $url);
- curl_setopt($this->_getResource(), CURLOPT_HTTP_VERSION, $http_ver);
curl_setopt($this->_getResource(), CURLOPT_RETURNTRANSFER, true);
if ($method == \Zend_Http_Client::POST) {
curl_setopt($this->_getResource(), CURLOPT_POST, true);