Skip to content

Commit

Permalink
Merge pull request #2849 from Adyen/ECP-9520
Browse files Browse the repository at this point in the history
[ECP-9520]Add APSE to checkout frontend regions
  • Loading branch information
khushboo-singhvi authored Jan 15, 2025
2 parents 8417b45 + ac9b162 commit 51076ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ public function getCheckoutFrontendRegions()
'eu' => 'Default (EU - Europe)',
'au' => 'AU - Australasia',
'us' => 'US - United States',
'in' => 'IN - India'
'in' => 'IN - India',
'apse' => 'APSE - Asia Pacific Southeast'
];
}

Expand Down
6 changes: 4 additions & 2 deletions Test/Unit/Helper/DataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ public function testGetCheckoutFrontendRegions()
'eu' => 'Default (EU - Europe)',
'au' => 'AU - Australasia',
'us' => 'US - United States',
'in' => 'IN - India'
'in' => 'IN - India',
'apse' => 'APSE - Asia Pacific Southeast'
];

$actualResult = $this->dataHelper->getCheckoutFrontendRegions();
Expand Down Expand Up @@ -1803,7 +1804,8 @@ public function getCheckoutFrontendRegionsShouldReturnAnArray()
'eu' => 'Default (EU - Europe)',
'au' => 'AU - Australasia',
'us' => 'US - United States',
'in' => 'IN - India'
'in' => 'IN - India',
'apse' => 'APSE - Asia Pacific Southeast'
], $this->dataHelper->getRecurringTypes());
}

Expand Down

0 comments on commit 51076ad

Please sign in to comment.