From ed6c86635a02c5a2900a0aa264cfbc501d0ecaf2 Mon Sep 17 00:00:00 2001 From: Vitalij Mik Date: Thu, 5 Dec 2024 15:03:39 +0100 Subject: [PATCH] NTR: fix tests --- tests/PHPUnit/Service/MollieApi/ShipmentTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/PHPUnit/Service/MollieApi/ShipmentTest.php b/tests/PHPUnit/Service/MollieApi/ShipmentTest.php index 1251dec14..4718ecb8f 100644 --- a/tests/PHPUnit/Service/MollieApi/ShipmentTest.php +++ b/tests/PHPUnit/Service/MollieApi/ShipmentTest.php @@ -195,7 +195,8 @@ public function testGetTotals() $expectedTotals = [ 'amount' => 175.0, - 'quantity' => 5 + 'quantity' => 5, + 'shippableQuantity' => 4 ]; $actualTotals = $this->shipmentApiService->getTotals('mollieOrderId', 'salesChannelId');