From 4f6281da708905bfa36dac6c8b390b6e95d1e7f3 Mon Sep 17 00:00:00 2001 From: Stanislav Idolov <sidolov@magento.com> Date: Fri, 16 Sep 2016 11:24:33 +0300 Subject: [PATCH] MAGETWO-58338: [Github]Problem adding attribute options that start with a number via REST Api #5715 --- .../Api/ProductAttributeOptionManagementInterfaceTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php index 744b861e5d0..82f7433d949 100644 --- a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php +++ b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php @@ -107,10 +107,10 @@ class ProductAttributeOptionManagementInterfaceTest extends WebapiAbstract $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']) ], ]; -- GitLab