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 8ee703b commit c8ff114Copy full SHA for c8ff114
dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/PlaceOrderStep.php
@@ -80,8 +80,8 @@ public function __construct(
80
*/
81
public function run()
82
{
83
- if (!empty($this->prices)) {
84
- $this->assertGrandTotalOrderReview->processAssert($this->checkoutOnepage, $this->prices);
+ if (isset($this->prices['grandTotal'])) {
+ $this->assertGrandTotalOrderReview->processAssert($this->checkoutOnepage, $this->prices['grandTotal']);
85
}
86
$this->checkoutOnepage->getReviewBlock()->placeOrder();
87
0 commit comments