Skip to content

Commit

Permalink
MAGETWO-58338: [Github]Problem adding attribute options that start wi…
Browse files Browse the repository at this point in the history
…th a number via REST Api #5715
  • Loading branch information
Stanislav Idolov committed Sep 16, 2016
1 parent 0194d4b commit 4f6281d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ public function addDataProvider()
$optionPayload
],
'option_with_value_node_that_starts_with_text' => [
array_merge($optionPayload , [AttributeOptionInterface::VALUE => 'some_text'])
array_merge($optionPayload, [AttributeOptionInterface::VALUE => 'some_text'])
],
'option_with_value_node_that_starts_with_a_number' => [
array_merge($optionPayload , [AttributeOptionInterface::VALUE => '123_some_text'])
array_merge($optionPayload, [AttributeOptionInterface::VALUE => '123_some_text'])
],

];
Expand Down

0 comments on commit 4f6281d

Please sign in to comment.