/**
  * @Then his billing address should be :billingAddress
  */
 public function hisBillingAddressShouldBe($billingAddress)
 {
     Assert::same(str_replace(',', '', $billingAddress), $this->showPage->getBillingAddress(), 'Customer billing address should be "%s", but it is not.');
 }