Skip to content

Commit 4f6281d

Browse files
author
Stanislav Idolov
committed
MAGETWO-58338: [Github]Problem adding attribute options that start with a number via REST Api #5715
1 parent 0194d4b commit 4f6281d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ public function addDataProvider()
107107
$optionPayload
108108
],
109109
'option_with_value_node_that_starts_with_text' => [
110-
array_merge($optionPayload , [AttributeOptionInterface::VALUE => 'some_text'])
110+
array_merge($optionPayload, [AttributeOptionInterface::VALUE => 'some_text'])
111111
],
112112
'option_with_value_node_that_starts_with_a_number' => [
113-
array_merge($optionPayload , [AttributeOptionInterface::VALUE => '123_some_text'])
113+
array_merge($optionPayload, [AttributeOptionInterface::VALUE => '123_some_text'])
114114
],
115115

116116
];

0 commit comments

Comments
 (0)