Fixes after upmerge

This commit is contained in:
Adam Kasperczak 2021-05-07 11:40:03 +02:00
parent dd74127f2f
commit 3653caeea0
2 changed files with 0 additions and 5 deletions

View file

@ -16,7 +16,6 @@ Feature: Preventing adding to cart disabled products
Given the product "PHP T-Shirt" has been disabled
When I pick up my cart
And I try to add product "PHP T-Shirt" to the cart
Then I should be informed that product "PHP T-Shirt" is disabled
Then I should be informed that product "PHP T-Shirt" does not exist
@api

View file

@ -19,11 +19,7 @@ use Symfony\Component\Validator\Constraint;
final class ProductOrVariantEnabled extends Constraint
{
/** @var string */
<<<<<<< HEAD
public $message = 'sylius.order.product_eligibility';
=======
public $message = 'sylius.order.product_does_not_exist';
>>>>>>> 1.9
public function validatedBy(): string
{