You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertImportCustomerAddresses.php
+19-10Lines changed: 19 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,24 @@ class AssertImportCustomerAddresses extends AbstractConstraint
22
22
* @var array
23
23
*/
24
24
private$mappingKeys = [
25
-
'firstname' => 'firstname',
26
-
'lastname' => 'lastname',
27
-
'postcode' => 'postcode',
28
-
'region' => 'region_id',
29
-
'city' => 'city',
30
-
'company' => 'company',
31
-
'country_id' => 'country_id',
32
-
'street' => 'street',
33
-
'telephone' => 'telephone',
25
+
'region' => 'region_id'
26
+
];
27
+
28
+
/**
29
+
* Imported fields keys.
30
+
*
31
+
* @var array
32
+
*/
33
+
private$importedFieldsKeys = [
34
+
'firstname',
35
+
'lastname',
36
+
'postcode',
37
+
'region_id',
38
+
'city',
39
+
'company',
40
+
'country_id',
41
+
'street',
42
+
'telephone'
34
43
];
35
44
36
45
/**
@@ -156,7 +165,7 @@ private function getResultCsv()
0 commit comments