Skip to content

Commit bfc5228

Browse files
ENGCOM-5009: magento/graphql-ce#649: GetSpecifiedBillingAddressTest fix misspelling #651
- Merge Pull Request magento/graphql-ce#651 from magento/graphql-ce:649-GetSpecifiedBillingAddressTest-fix-misspelling - Merged commits: 1. 98b1d3c
2 parents 37677f8 + 98b1d3c commit bfc5228

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected function setUp()
4444
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
4545
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
4646
*/
47-
public function testGeSpecifiedBillingAddress()
47+
public function testGetSpecifiedBillingAddress()
4848
{
4949
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
5050
$query = $this->getQuery($maskedQuoteId);
@@ -83,7 +83,7 @@ public function testGeSpecifiedBillingAddress()
8383
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
8484
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
8585
*/
86-
public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
86+
public function testGetSpecifiedBillingAddressIfBillingAddressIsNotSet()
8787
{
8888
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
8989
$query = $this->getQuery($maskedQuoteId);
@@ -121,7 +121,7 @@ public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
121121
* @expectedException \Exception
122122
* @expectedExceptionMessage Could not find a cart with ID "non_existent_masked_id"
123123
*/
124-
public function testGeSpecifiedBillingAddressOfNonExistentCart()
124+
public function testGetSpecifiedBillingAddressOfNonExistentCart()
125125
{
126126
$maskedQuoteId = 'non_existent_masked_id';
127127
$query = $this->getQuery($maskedQuoteId);
@@ -137,7 +137,7 @@ public function testGeSpecifiedBillingAddressOfNonExistentCart()
137137
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
138138
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
139139
*/
140-
public function testGeSpecifiedBillingAddressFromAnotherGuestCart()
140+
public function testGetSpecifiedBillingAddressFromAnotherGuestCart()
141141
{
142142
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
143143

@@ -155,7 +155,7 @@ public function testGeSpecifiedBillingAddressFromAnotherGuestCart()
155155
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
156156
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
157157
*/
158-
public function testGeSpecifiedBillingAddressFromAnotherCustomerCart()
158+
public function testGetSpecifiedBillingAddressFromAnotherCustomerCart()
159159
{
160160
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
161161

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function setUp()
3636
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
3737
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
3838
*/
39-
public function testGeSpecifiedBillingAddress()
39+
public function testGetSpecifiedBillingAddress()
4040
{
4141
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
4242
$query = $this->getQuery($maskedQuoteId);
@@ -73,7 +73,7 @@ public function testGeSpecifiedBillingAddress()
7373
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
7474
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
7575
*/
76-
public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
76+
public function testGetSpecifiedBillingAddressIfBillingAddressIsNotSet()
7777
{
7878
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
7979
$query = $this->getQuery($maskedQuoteId);

0 commit comments

Comments
 (0)