From edb76cb46841c9d9a162cf7e088731a6b0f33841 Mon Sep 17 00:00:00 2001 From: Ruslan Kostiv <rkostiv@magento.com> Date: Mon, 3 Oct 2016 14:02:28 +0300 Subject: [PATCH] MAGETWO-47698: [Github] Custom options not displayed correctly on a store view level #2908 #5885 --- .../Catalog/_files/product_simple_with_custom_options.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php index 0366e90cd97..a0a29753bfe 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php @@ -49,14 +49,14 @@ $oldOptions = [ 'sort_order' => 0, 'values' => [ [ - 'option_type_id' => -1, + 'option_type_id' => null, 'title' => 'Option 1', 'price' => '3,000.00', 'price_type' => 'fixed', 'sku' => '3-1-select', ], [ - 'option_type_id' => -1, + 'option_type_id' => null, 'title' => 'Option 2', 'price' => '5,000.00', 'price_type' => 'fixed', @@ -72,14 +72,14 @@ $oldOptions = [ 'sort_order' => 0, 'values' => [ [ - 'option_type_id' => -1, + 'option_type_id' => null, 'title' => 'Option 1', 'price' => '600.234', 'price_type' => 'fixed', 'sku' => '4-1-radio', ], [ - 'option_type_id' => -1, + 'option_type_id' => null, 'title' => 'Option 2', 'price' => '40,000.00', 'price_type' => 'fixed', -- GitLab