Skip to content

Commit

Permalink
MAGETWO-84372: 9515: South Korea Zip Code Validation incorrect #903
Browse files Browse the repository at this point in the history
 - Merge Pull Request magento-engcom/magento2ce#903 from RomaKis/magento2:9515
 - Merged commits:
   1. 97d449c
   2. 5c3d295
  • Loading branch information
Oleksii Korshenko committed Nov 27, 2017
2 parents 9c3d257 + 5c3d295 commit 830517b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/code/Magento/Directory/etc/zip_codes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
</zip>
<zip countryCode="KR">
<codes>
<code id="pattern_1" active="true" example="123-456">^[0-9]{3}-[0-9]{3}$</code>
<code id="pattern_1" active="true" example="12345">^[0-9]{5}$</code>
</codes>
</zip>
<zip countryCode="KG">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function getPostcodesDataProvider()
['countryId' => 'JE', 'postcode' => 'TY8 9PL'],
['countryId' => 'KZ', 'postcode' => '123456'],
['countryId' => 'KE', 'postcode' => '12345'],
['countryId' => 'KR', 'postcode' => '123-456'],
['countryId' => 'KR', 'postcode' => '12345'],
['countryId' => 'KG', 'postcode' => '123456'],
['countryId' => 'LV', 'postcode' => '1234'],
['countryId' => 'LI', 'postcode' => '1234'],
Expand Down

0 comments on commit 830517b

Please sign in to comment.