Skip to content

Commit

Permalink
Merge pull request #2617 from Adyen/develop-8
Browse files Browse the repository at this point in the history
Release 8.22.9
  • Loading branch information
RokPopov authored May 28, 2024
2 parents d0df521 + 1c175ac commit 8258bc6
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Test/Unit/Model/Config/Backend/DonationAmountsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected function setUp(): void
public function testValidateDonationAmounts($donationAmounts, $expectedResult)
{
$result = $this->donationAmounts->validateDonationAmounts(explode(',', $donationAmounts));
$this->assertEquals($result, $expectedResult);
$this->assertEquals($expectedResult, $result);
}

public static function donationAmountsProvider()
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "adyen/module-payment",
"description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.",
"type": "magento2-module",
"version": "8.22.8",
"version": "8.22.9",
"license": "MIT",
"repositories": [
{
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Adyen_Payment" setup_version="8.22.8">
<module name="Adyen_Payment" setup_version="8.22.9">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Quote"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ define(
self.loadCheckoutComponent(paymentMethodsResponse)
});

self.loadCheckoutComponent(paymentMethodsObserver());
return this;
},
loadCheckoutComponent: async function (paymentMethodsResponse) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ define(
self.loadAdyenPaymentMethods(paymentMethodsResponse);
});

self.loadAdyenPaymentMethods(paymentMethodsObserver());
},
loadAdyenPaymentMethods: async function (paymentMethodsResponse) {
var self = this;
Expand Down

0 comments on commit 8258bc6

Please sign in to comment.