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 495e4e6 commit 94442dcCopy full SHA for 94442dc
app/code/Magento/GoogleGtag/Test/Unit/Block/GaTest.php
@@ -223,7 +223,7 @@ protected function createOrderMock($orderItemCount = 1)
223
$orderMock->expects($this->once())->method('getGrandTotal')->willReturn(10);
224
$orderMock->expects($this->once())->method('getTaxAmount')->willReturn(2);
225
$orderMock->expects($this->once())->method('getShippingAmount')->willReturn($orderItemCount);
226
- $orderMock->expects($this->once())->method('getOrderCurrencyCode')->willReturn('USD');
+ $orderMock->expects($this->exactly(2))->method('getOrderCurrencyCode')->willReturn('USD');
227
return $orderMock;
228
}
229
0 commit comments