Skip to content

Commit a41a693

Browse files
committed
Fix typo in test method's name
1 parent 3765f05 commit a41a693

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/Method.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function selectShippingMethod(array $method)
9191
* @param array $method
9292
* @return bool
9393
*/
94-
public function isShippingMethodAvaiable(array $method)
94+
public function isShippingMethodAvailable(array $method)
9595
{
9696
$this->waitForShippingRates();
9797
$selector = sprintf($this->shippingMethod, $method['shipping_method'], $method['shipping_service']);

dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertCityBasedShippingRateChanged.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function processAssert(CheckoutOnepage $checkoutOnepage, $shippingMethod,
3333
$shippingAvailability = $isShippingAvailable ? 'avaiable' : 'unavailable';
3434
\PHPUnit_Framework_Assert::assertEquals(
3535
$isShippingAvailable,
36-
$checkoutOnepage->getShippingMethodBlock()->isShippingMethodAvaiable($shippingMethod),
36+
$checkoutOnepage->getShippingMethodBlock()->isShippingMethodAvailable($shippingMethod),
3737
"Shipping rates for {$shippingMethod['shipping_service']} should be $shippingAvailability."
3838
);
3939
}

0 commit comments

Comments
 (0)