Skip to content

Commit 7c92bc1

Browse files
author
saurabh-aureate
committed
Remove extra semicolon from the files
1 parent 6f8fc45 commit 7c92bc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testGetOrderIdsWithEmptyIdsArray()
7171
public function testGetOrderIds()
7272
{
7373
$ids = [100, 102, 103];
74-
$this->sessionMock->method('getOrderIds')->willReturn($ids);;
74+
$this->sessionMock->method('getOrderIds')->willReturn($ids);
7575

7676
$this->assertEquals($ids, $this->model->getOrderIds());
7777
}

app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ protected function processProductItems(
531531
$total->setSubtotalInclTax($subtotalInclTax);
532532
$total->setBaseSubtotalTotalInclTax($baseSubtotalInclTax);
533533
$total->setBaseSubtotalInclTax($baseSubtotalInclTax);
534-
$shippingAssignment->getShipping()->getAddress()->setBaseSubtotalTotalInclTax($baseSubtotalInclTax);;
534+
$shippingAssignment->getShipping()->getAddress()->setBaseSubtotalTotalInclTax($baseSubtotalInclTax);
535535

536536
return $this;
537537
}

0 commit comments

Comments
 (0)