Skip to content

Commit f2caa5d

Browse files
merge magento/2.3.1-release into magento-honey-badgers/MAGETWO-98258
2 parents 4e5172d + 5caad47 commit f2caa5d

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

app/code/Magento/AuthorizenetAcceptjs/etc/payment.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
1010
<methods>
1111
<method name="authorizenet_acceptjs">
12-
<allow_multiple_address>1</allow_multiple_address>
12+
<allow_multiple_address>0</allow_multiple_address>
1313
</method>
1414
</methods>
1515
</payment>

app/code/Magento/Catalog/Test/Mftf/Test/AdminCreateCategoryWithProductsGridFilter.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<actionGroup ref="deleteProductUsingProductGrid" stepKey="deleteProduct2">
2929
<argument name="product" value="SimpleProduct"/>
3030
</actionGroup>
31+
<actionGroup ref="NavigateToAndResetProductGridToDefaultView" stepKey="NavigateToAndResetProductGridToDefaultView"/>
3132
<actionGroup ref="logout" stepKey="logout"/>
3233
</after>
3334
<amOnPage url="{{AdminProductIndexPage.url}}" stepKey="amOnProductList"/>

app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,21 @@
77
.rma-request-details,
88
.rma-wrapper .order-shipping-address {
99
float: left;
10-
#mix-grid .width(6,12);
10+
/**
11+
* @codingStandardsIgnoreStart
12+
*/
13+
#mix-grid .width(6, 12);
14+
//@codingStandardsIgnoreEnd
1115
}
1216

1317
.rma-confirmation,
14-
.rma-wrapper .order-return-address {
18+
.rma-wrapper .order-return-address, .rma-wrapper .order-shipping-method {
1519
float: right;
16-
#mix-grid .width(6,12);
20+
/**
21+
* @codingStandardsIgnoreStart
22+
*/
23+
#mix-grid .width(6, 12);
24+
//@codingStandardsIgnoreEnd
1725
}
1826
}
1927

dev/tests/integration/testsuite/Magento/AuthorizenetAcceptjs/Gateway/ConfigTest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
namespace Magento\AuthorizenetAcceptjs\Gateway;
1010

11+
use Magento\Framework\Config\Data;
1112
use Magento\Payment\Model\Method\Adapter;
1213
use Magento\TestFramework\Helper\Bootstrap;
1314
use Magento\TestFramework\ObjectManager;
@@ -40,5 +41,11 @@ public function testVerifyConfiguration()
4041
$this->assertTrue($paymentAdapter->canUseInternal());
4142
$this->assertTrue($paymentAdapter->canEdit());
4243
$this->assertTrue($paymentAdapter->canFetchTransactionInfo());
44+
45+
/** @var Data $configReader */
46+
$configReader = $this->objectManager->get('Magento\Payment\Model\Config\Data');
47+
$value = $configReader->get('methods/authorizenet_acceptjs/allow_multiple_address');
48+
49+
$this->assertSame('0', $value);
4350
}
4451
}

dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,9 @@
6969
<item>
7070
<path>dev/build/publication/sanity/ce.xml</path>
7171
</item>
72+
<item>
73+
<path>app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less</path>
74+
<word>rma</word>
75+
</item>
7276
</whitelist>
7377
</config>

lib/internal/Magento/Framework/HTTP/Adapter/Curl.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ public function write($method, $url, $http_ver = '1.1', $headers = [], $body = '
170170

171171
// set url to post to
172172
curl_setopt($this->_getResource(), CURLOPT_URL, $url);
173-
curl_setopt($this->_getResource(), CURLOPT_HTTP_VERSION, $http_ver);
174173
curl_setopt($this->_getResource(), CURLOPT_RETURNTRANSFER, true);
175174
if ($method == \Zend_Http_Client::POST) {
176175
curl_setopt($this->_getResource(), CURLOPT_POST, true);

0 commit comments

Comments
 (0)