File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
app/code/Magento/Catalog/Model
dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -962,7 +962,7 @@ public function getGroupPrice()
962
962
/**
963
963
* Gets list of product group prices
964
964
*
965
- * @return \Magento\Catalog\Api\Data\ProductGroupPriceInterface[]
965
+ * @return \Magento\Catalog\Api\Data\ProductGroupPriceInterface[]|null
966
966
*/
967
967
public function getGroupPrices ()
968
968
{
@@ -984,7 +984,7 @@ public function setGroupPrices(array $groupPrices = null)
984
984
/**
985
985
* Gets list of product tier prices
986
986
*
987
- * @return \Magento\Catalog\Api\Data\ProductTierPriceInterface[]
987
+ * @return \Magento\Catalog\Api\Data\ProductTierPriceInterface[]|null
988
988
*/
989
989
public function getTierPrices ()
990
990
{
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ public function testGetVariation()
69
69
'attribute_code ' => 'test_configurable ' ,
70
70
'value ' => $ attributeOptionValue
71
71
]
72
- ]
72
+ ],
73
+ 'group_prices ' => [],
74
+ 'tier_prices ' => []
73
75
]
74
76
];
75
77
ksort ($ expectedItems );
You can’t perform that action at this time.
0 commit comments