Skip to content

Commit

Permalink
magento/graphql-ce#890: [Checkout] Replace usage of CartItemQuantity …
Browse files Browse the repository at this point in the history
…with CartItemInterface
  • Loading branch information
lenaorobei committed Oct 23, 2019
1 parent 344648f commit b9f708b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ public function testGetAvailableShippingMethods()
);
self::assertCount(1, $response['cart']['shipping_addresses'][0]['cart_items']);
self::assertCount(1, $response['cart']['shipping_addresses'][0]['cart_items_v2']);
self::assertEquals('simple_product', $response['cart']['shipping_addresses'][0]['cart_items_v2'][0]['product']['sku']);
self::assertEquals(
'simple_product',
$response['cart']['shipping_addresses'][0]['cart_items_v2'][0]['product']['sku']
);
}

/**
Expand Down

0 comments on commit b9f708b

Please sign in to comment.