Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.

Commit b9f708b

Browse files
committed
#890: [Checkout] Replace usage of CartItemQuantity with CartItemInterface
1 parent 344648f commit b9f708b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Quote/Guest/GetAvailableShippingMethodsTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ public function testGetAvailableShippingMethods()
7575
);
7676
self::assertCount(1, $response['cart']['shipping_addresses'][0]['cart_items']);
7777
self::assertCount(1, $response['cart']['shipping_addresses'][0]['cart_items_v2']);
78-
self::assertEquals('simple_product', $response['cart']['shipping_addresses'][0]['cart_items_v2'][0]['product']['sku']);
78+
self::assertEquals(
79+
'simple_product',
80+
$response['cart']['shipping_addresses'][0]['cart_items_v2'][0]['product']['sku']
81+
);
7982
}
8083

8184
/**

0 commit comments

Comments
 (0)