[Shop][Account] Fixes after PR review

This commit is contained in:
Grzegorz Sadowski 2016-06-22 11:51:32 +02:00
parent 3233930774
commit 7fbcf39e8b
6 changed files with 5 additions and 6 deletions

View file

@ -9,7 +9,7 @@ Feature: Viewing orders on my account page
And the store has "Angel T-Shirt" and "Green Arrow" products
And the store ships everywhere for free
And the store allows paying with "Cash on Delivery"
And I am logged in customer
And I am a logged in customer
And I placed an order "#00000666"
And I addressed it to "Lucifer Morningstar", "Seaside Fwy", "90802" "Los Angeles" in the "United States"
And for the billing address of "Mazikeen Lilim" in the "Pacific Coast Hwy", "90806" "Los Angeles", "United States"

View file

@ -9,7 +9,7 @@ Feature: Viewing details of an order
And the store has a product "Angel T-Shirt" priced at "39.00"
And the store ships everywhere for free
And the store allows paying with "Cash on Delivery"
And I am logged in customer
And I am a logged in customer
And I placed an order "#00000666"
And I addressed it to "Lucifer Morningstar", "Seaside Fwy", "90802" "Los Angeles" in the "United States"
And for the billing address of "Mazikeen Lilim" in the "Pacific Coast Hwy", "90806" "Los Angeles", "United States"

View file

@ -10,7 +10,7 @@ Feature: Viewing details of an order
And the store has a product "Angel Mug" priced at "19.00"
And the store ships everywhere for free
And the store allows paying with "Cash on Delivery"
And I am logged in customer
And I am a logged in customer
And I placed an order "#00000666"
And I addressed it to "Lucifer Morningstar", "Seaside Fwy", "90802" "Los Angeles" in the "United States"
And for the billing address of "Mazikeen Lilim" in the "Pacific Coast Hwy", "90806" "Los Angeles", "United States"

View file

@ -9,7 +9,7 @@ Feature: Viewing only my orders on my account page
And the store has a product "Angel T-Shirt"
And the store ships everywhere for free
And the store allows paying with "Cash on Delivery"
And I am logged in customer
And I am a logged in customer
And I placed an order "#00000666"
And I addressed it to "Lucifer Morningstar", "Seaside Fwy", "90802" "Los Angeles" in the "United States"
And for the billing address of "Mazikeen Lilim" in the "Pacific Coast Hwy", "90806" "Los Angeles", "United States"

View file

@ -12,7 +12,6 @@
namespace Sylius\Behat\Context\Ui\Shop;
use Behat\Behat\Context\Context;
use Behat\Behat\Tester\Exception\PendingException;
use Sylius\Behat\NotificationType;
use Sylius\Behat\Page\PageInterface;
use Sylius\Behat\Page\Shop\Account\ChangePasswordPageInterface;

View file

@ -160,6 +160,6 @@ class ShowPage extends SymfonyPage implements ShowPageInterface
(stripos($elementText, $street) !== false) &&
(stripos($elementText, $city) !== false) &&
(stripos($elementText, $countryName.' '.$postcode) !== false)
;
;
}
}