Skip to content

Commit 9637bf8

Browse files
ENGCOM-1711: Remove extra semicolon from the files #15594
- Merge Pull Request #15594 from saurabh-aureate/magento2:saurabh-patch-8 - Merged commits: 1. 7c92bc1
2 parents 323994f + 7c92bc1 commit 9637bf8

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)