Skip to content

Commit d2c9fb6

Browse files
committed
MAGETWO-54824: Can't save customer from admin if custom attribute is required and contains digit in code
1 parent f0886e1 commit d2c9fb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@ public function testUpdateData()
292292
$customerDataAttributes = [
293293
'attribute' => 'attribute',
294294
'test1' => 'test1',
295-
'test33' => 'test33'
295+
'test33' => 'test33',
296296
];
297297

298298
$customer = $this->getMock(
299299
\Magento\Customer\Model\Data\Customer::class,
300300
[
301301
'getCustomAttributes',
302-
'getId'
302+
'getId',
303303
],
304304
[],
305305
'',
@@ -310,7 +310,7 @@ public function testUpdateData()
310310
\Magento\Framework\Api\AttributeValue::class,
311311
[
312312
'getAttributeCode',
313-
'getValue'
313+
'getValue',
314314
],
315315
[],
316316
'',

0 commit comments

Comments
 (0)