Skip to content

Commit d7642cc

Browse files
committed
ACP2E-94: When product is removed in Multiaddress checkout, the address dropdown value changes to default of all product.
IT for test coverage implemented-static errors fixed
1 parent 04b2f8b commit d7642cc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -798,14 +798,14 @@ public function testIsMultiShippingModeEnabledAfterQuoteItemRemoved(): void
798798
}
799799
$quote->removeItem($idToDelete);
800800
$this->assertEquals(
801-
1,
802-
$quote->getIsMultiShipping(),
803-
"Multi-shipping mode is disabled after quote item removal"
801+
1,
802+
$quote->getIsMultiShipping(),
803+
"Multi-shipping mode is disabled after quote item removal"
804804
);
805805
} else {
806806
$this->assertTrue(
807-
!is_null($idToDelete),
808-
"No Simple Product item with qty 1 to delete exists"
807+
!is_null($idToDelete),
808+
"No Simple Product item with qty 1 to delete exists"
809809
);
810810
}
811811
}

0 commit comments

Comments
 (0)