Skip to content

Commit

Permalink
magento#631 Fix Fail tests with qty error api functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
osrecio committed Apr 26, 2019
1 parent 1d8a7ee commit a146f8d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private function getQuery(string $maskedQuoteId, string $sku, int $qty) : string
cartItems: [
{
data: {
qty: $qty
quantity: $qty
sku: "$sku"
}
}
Expand All @@ -106,7 +106,7 @@ private function getQuery(string $maskedQuoteId, string $sku, int $qty) : string
) {
cart {
items {
qty
quantity
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function testAddSimpleProductWithNoRequiredOptionsSet()
cartItems: [
{
data: {
qty: $qty
quantity: $qty
sku: "$sku"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private function addProductToCart(string $cartId, float $qty, string $sku): void
) {
cart {
items {
qty
quantity
product {
sku
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public function testSetPaymentMethodWithoutRequiredParameters(string $input, str
) {
cart {
items {
qty
quantity
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function testSetPaymentMethodWithoutRequiredParameters(string $input, str
) {
cart {
items {
qty
quantity
}
}
}
Expand Down

0 comments on commit a146f8d

Please sign in to comment.