Skip to content

Commit 8afaf80

Browse files
committed
refactoring: changed variable long name
1 parent 4fcf7ed commit 8afaf80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Quote/Customer/AddSimpleProductToCartTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ public function testAddProductToNonExistentCart()
5454
{
5555
$sku = 'simple_product';
5656
$qty = 2;
57-
$nonExistentMaskedQuoteId = 'non_existent_masked_id';
58-
$query = $this->getQuery($nonExistentMaskedQuoteId, $sku, $qty);
57+
$maskedQuoteId = 'non_existent_masked_id';
58+
$query = $this->getQuery($maskedQuoteId, $sku, $qty);
5959

6060
$this->expectExceptionMessage(
61-
"Could not find a cart with ID \"$nonExistentMaskedQuoteId\""
61+
"Could not find a cart with ID \"$maskedQuoteId\""
6262
);
6363

6464
$this->graphQlMutation($query, [], '', $this->getHeaderMap());

0 commit comments

Comments
 (0)