generate uuid instead of word in AttributeFamilyCest.php to avoid randomly failing test

This commit is contained in:
Herbert Maschke 2020-03-10 10:24:26 +01:00
parent e20bb9cc97
commit 7e6de00e0e
1 changed files with 2 additions and 2 deletions

View File

@ -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']);