fix province name for UI behat

This commit is contained in:
Olivier ALLAIN 2020-03-28 19:47:17 +01:00
parent 7f8ee6bbd8
commit df548bbc1e

View file

@ -148,19 +148,19 @@ final class CheckoutAddressingContext implements Context
}
/**
* @When I specify shipping country province as :province
* @When I specify shipping country province as :provinceName
*/
public function iSpecifyShippingCountryProvinceAs($province)
public function iSpecifyShippingCountryProvinceAs($provinceName)
{
$this->addressPage->selectShippingAddressProvince($province);
$this->addressPage->selectShippingAddressProvince($provinceName);
}
/**
* @When I specify billing country province as :province
* @When I specify billing country province as :provinceName
*/
public function iSpecifyBillingCountryProvinceAs($province)
public function iSpecifyBillingCountryProvinceAs($provinceName)
{
$this->addressPage->selectBillingAddressProvince($province);
$this->addressPage->selectBillingAddressProvince($provinceName);
}
/**