modified functional GuestCheckoutCest

This commit is contained in:
MonaHartdegen 2020-02-12 10:33:17 +01:00
parent 2849ddd7db
commit 7a69e4368e
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class GuestCheckoutCest
$this->faker = Factory::create();
$pConfigDefault = [
'productInventory' => ['qty' => $this->faker->randomNumber(2)],
'productInventory' => ['qty' => $this->faker->numberBetween(1, 1000)],
'attributeValues' => [
'status' => true,
'new' => 1,
@ -27,7 +27,7 @@ class GuestCheckoutCest
],
];
$pConfigGuestCheckout = [
'productInventory' => ['qty' => $this->faker->randomNumber(2)],
'productInventory' => ['qty' => $this->faker->numberBetween(1, 1000)],
'attributeValues' => [
'status' => true,
'new' => 1,