Skip to content

Commit

Permalink
change postal code to Helsinki
Browse files Browse the repository at this point in the history
  • Loading branch information
datqn7244 committed Aug 30, 2024
1 parent 009fd15 commit d86570f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/PostnordClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class PostnordClientTest extends TestCase
'shop_name' => 'Temp Dev',
'shop_party_id' => '1111111111',
'shop_street' => 'Finlaysoninkuja 19',
'shop_postcode' => '33210',
'shop_city' => 'Tampere',
'shop_postcode' => '00100',
'shop_city' => 'Helsinki',
'shop_country' => 'FI',
'shop_phone' => '+358123456789',
];
Expand All @@ -42,10 +42,10 @@ class PostnordClientTest extends TestCase
'servicePointId' => '9325',
'visitingAddress' => [
'countryCode' => 'FI',
'city' => 'TAMPERE',
'city' => 'HELSINKI',
'streetName' => 'Kuninkaankatu',
'streetNumber' => '14',
'postalCode' => '33210',
'postalCode' => '00100',
'additionalDescription' => null,
],
];
Expand Down Expand Up @@ -75,8 +75,8 @@ class PostnordClientTest extends TestCase
private $returnAddress = [
'return_name' => 'Temp Dev',
'return_street' => 'Finlaysoninkuja 19',
'return_postcode' => '33210',
'return_city' => 'Tampere',
'return_postcode' => '00100',
'return_city' => 'Helsinki',
'return_country' => 'FI',
];

Expand Down Expand Up @@ -134,8 +134,8 @@ public function testGetServicePointsByAddress(): void
$params = [
'countryCode' => 'FI',
'agreementCountry' => 'FI',
'city' => 'Tampere',
'postalCode' => '33210',
'city' => 'Helsinki',
'postalCode' => '00100',
'streetName' => 'Finlaysoninkuja',
'streetNumber' => '19',
'numberOfServicePoints' => 1,
Expand Down

0 comments on commit d86570f

Please sign in to comment.