Skip to content

Commit

Permalink
GraphQL-37: [Cart Operations] Manage Cart Items
Browse files Browse the repository at this point in the history
-- Refactoring
  • Loading branch information
naydav committed Feb 28, 2019
1 parent e5c5f41 commit 445c02d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function testGetGuestCart()
* @magentoApiDataFixture Magento/Customer/_files/three_customers.php
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_items_saved.php
*/
public function testGetCartIfCustomerIsNotOwnerOfCart()
public function testGetAnotherCustomerCart()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReversedQuoteId('test_order_item_with_items');
$query = $this->getCartQuery($maskedQuoteId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public function testSetBillingAddressToGuestCart()
* @magentoApiDataFixture Magento/Customer/_files/customer_address.php
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_simple_product_saved.php
*/
public function testSetBillingAddressIfCustomerIsNotOwnerOfCart()
public function testSetBillingAddressToAnotherCustomerCart()
{
$maskedQuoteId = $this->assignQuoteToCustomer('test_order_with_simple_product_without_address', 2);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function testSetPaymentMethodToGuestCart()
* @magentoApiDataFixture Magento/Customer/_files/three_customers.php
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_address_saved.php
*/
public function testSetPaymentMethodIfCustomerIsNotOwnerOfCart()
public function testSetPaymentMethodToAnotherCustomerCart()
{
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
$maskedQuoteId = $this->getMaskedQuoteIdByReversedQuoteId('test_order_1');
Expand Down

0 comments on commit 445c02d

Please sign in to comment.