Skip to content

Commit

Permalink
magento/graphql-ce#649: GetSpecifiedBillingAddressTest fix misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
atwixfirster committed May 1, 2019
1 parent 93a8162 commit 98b1d3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function setUp()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
*/
public function testGeSpecifiedBillingAddress()
public function testGetSpecifiedBillingAddress()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
$query = $this->getQuery($maskedQuoteId);
Expand Down Expand Up @@ -83,7 +83,7 @@ public function testGeSpecifiedBillingAddress()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
*/
public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
public function testGetSpecifiedBillingAddressIfBillingAddressIsNotSet()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
$query = $this->getQuery($maskedQuoteId);
Expand Down Expand Up @@ -121,7 +121,7 @@ public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
* @expectedException \Exception
* @expectedExceptionMessage Could not find a cart with ID "non_existent_masked_id"
*/
public function testGeSpecifiedBillingAddressOfNonExistentCart()
public function testGetSpecifiedBillingAddressOfNonExistentCart()
{
$maskedQuoteId = 'non_existent_masked_id';
$query = $this->getQuery($maskedQuoteId);
Expand All @@ -137,7 +137,7 @@ public function testGeSpecifiedBillingAddressOfNonExistentCart()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
*/
public function testGeSpecifiedBillingAddressFromAnotherGuestCart()
public function testGetSpecifiedBillingAddressFromAnotherGuestCart()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');

Expand All @@ -155,7 +155,7 @@ public function testGeSpecifiedBillingAddressFromAnotherGuestCart()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
*/
public function testGeSpecifiedBillingAddressFromAnotherCustomerCart()
public function testGetSpecifiedBillingAddressFromAnotherCustomerCart()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function setUp()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
*/
public function testGeSpecifiedBillingAddress()
public function testGetSpecifiedBillingAddress()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
$query = $this->getQuery($maskedQuoteId);
Expand Down Expand Up @@ -73,7 +73,7 @@ public function testGeSpecifiedBillingAddress()
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
*/
public function testGeSpecifiedBillingAddressIfBillingAddressIsNotSet()
public function testGetSpecifiedBillingAddressIfBillingAddressIsNotSet()
{
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
$query = $this->getQuery($maskedQuoteId);
Expand Down

0 comments on commit 98b1d3c

Please sign in to comment.