@@ -482,7 +482,7 @@ public function searchAddressDataProvider(): array
482
482
null ,
483
483
null ,
484
484
[
485
- ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' , ],
485
+ ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' ],
486
486
],
487
487
1
488
488
],
@@ -491,7 +491,7 @@ public function searchAddressDataProvider(): array
491
491
null ,
492
492
null ,
493
493
[
494
- ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' , ],
494
+ ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' ],
495
495
],
496
496
1
497
497
],
@@ -503,8 +503,8 @@ public function searchAddressDataProvider(): array
503
503
$ orderBuilder ->setField ('city ' )->setDirection (SortOrder::SORT_ASC )->create (),
504
504
],
505
505
[
506
- ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' , ],
507
- ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' , ],
506
+ ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' ],
507
+ ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' ],
508
508
],
509
509
2
510
510
],
@@ -518,8 +518,8 @@ public function searchAddressDataProvider(): array
518
518
$ orderBuilder ->setField ('city ' )->setDirection (SortOrder::SORT_DESC )->create (),
519
519
],
520
520
[
521
- ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' , ],
522
- ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' , ],
521
+ ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' ],
522
+ ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' ],
523
523
],
524
524
2
525
525
],
@@ -531,8 +531,8 @@ public function searchAddressDataProvider(): array
531
531
$ orderBuilder ->setField ('postcode ' )->setDirection (SortOrder::SORT_ASC )->create (),
532
532
],
533
533
[
534
- ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' , ],
535
- ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' , ],
534
+ ['id ' => 2 , 'city ' => 'CityX ' , 'postcode ' => 47676 , 'firstname ' => 'John ' ],
535
+ ['id ' => 1 , 'city ' => 'CityM ' , 'postcode ' => 75477 , 'firstname ' => 'John ' ],
536
536
],
537
537
2
538
538
],
@@ -562,7 +562,7 @@ public function testSaveAddressWithRestrictedCountries(): void
562
562
'country_id ' => 'US ' ,
563
563
'region ' => $ region ,
564
564
'postcode ' => 90230 ,
565
- 'telephone ' => '555655431 '
565
+ 'telephone ' => '555655431 ' ,
566
566
];
567
567
$ address = $ this ->addressFactory ->create (['data ' => $ addressData ]);
568
568
$ saved = $ this ->repository ->save ($ address );
@@ -653,7 +653,7 @@ public function testUpdateWithAlphanumericZipCode(): void
653
653
AddressInterface::REGION => $ region ,
654
654
AddressInterface::POSTCODE => 'KA26 1PF ' ,
655
655
AddressInterface::TELEPHONE => '999-777-111-2345 ' ,
656
- AddressInterface::VAT_ID => '987654321 '
656
+ AddressInterface::VAT_ID => '987654321 ' ,
657
657
];
658
658
$ customerAddress = $ this ->repository ->getById ((int )$ defaultBillingAddress );
659
659
foreach ($ addressData as $ key => $ value ) {
0 commit comments