We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa41639 commit f2bfadeCopy full SHA for f2bfade
app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/TierPrice/UpdateHandlerTest.php
@@ -108,6 +108,7 @@ public function testExecute(): void
108
];
109
$linkField = 'entity_id';
110
$productId = 10;
111
+ $originalProductId = 11;
112
113
/** @var \PHPUnit_Framework_MockObject_MockObject $product */
114
$product = $this->getMockBuilder(\Magento\Catalog\Api\Data\ProductInterface::class)
@@ -124,7 +125,7 @@ public function testExecute(): void
124
125
->willReturnMap(
126
[
127
['tier_price', $originalTierPrices],
- ['entity_id', $productId]
128
+ ['entity_id', $originalProductId]
129
]
130
);
131
$product->expects($this->atLeastOnce())->method('getStoreId')->willReturn(0);
0 commit comments