generate uuid instead of word in AttributeFamilyCest.php to avoid randomly failing test
This commit is contained in:
parent
e20bb9cc97
commit
7e6de00e0e
|
|
@ -74,8 +74,8 @@ class AttributeFamilyCest
|
|||
private function fillForm(FunctionalTester $I): array
|
||||
{
|
||||
$testData = [
|
||||
'code' => $I->fake()->word,
|
||||
'name' => $I->fake()->word,
|
||||
'code' => $I->fake()->uuid,
|
||||
'name' => $I->fake()->sentence,
|
||||
];
|
||||
|
||||
$I->fillField('code', $testData['code']);
|
||||
|
|
|
|||
Loading…
Reference in New Issue