From c336cccd96d75440bb6b5040c3c4864cdf1d53be Mon Sep 17 00:00:00 2001 From: Marcos Trama Date: Wed, 16 Sep 2020 01:00:25 -0300 Subject: [PATCH] Fixed test for Brazilian zipcode (8 digits) --- .../Magento/Directory/Model/Country/Postcode/ValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php index 74db33398f721..2a4efd766b7c6 100644 --- a/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php +++ b/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php @@ -104,7 +104,7 @@ public function getPostcodesDataProvider() ['countryId' => 'BY', 'postcode' => '123456'], ['countryId' => 'BE', 'postcode' => '1234'], ['countryId' => 'BA', 'postcode' => '12345'], - ['countryId' => 'BR', 'postcode' => '12345'], + ['countryId' => 'BR', 'postcode' => '12345678'], ['countryId' => 'BR', 'postcode' => '12345-678'], ['countryId' => 'BN', 'postcode' => 'PS1234'], ['countryId' => 'BG', 'postcode' => '1234'],