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 0e58811 commit 84b1ea0Copy full SHA for 84b1ea0
app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php
@@ -129,6 +129,9 @@ public function testGetFullTaxInfoOrderWithoutTax(): void
129
->method('loadByOrder')
130
->with($orderMock)
131
->willReturnSelf();
132
+ $taxCollection->expects($this->once())
133
+ ->method('toArray')
134
+ ->willReturn(['items' => []]);
135
136
$taxOrder = $this->createMock(TaxModel::class);
137
$taxOrder->expects($this->once())
0 commit comments