From 76901b2b934635de3088da259ae4ac5702188663 Mon Sep 17 00:00:00 2001 From: David Callizaya Date: Fri, 6 Dec 2024 09:23:19 -0400 Subject: [PATCH] Fix flaky test --- tests/Feature/Api/UsersTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Api/UsersTest.php b/tests/Feature/Api/UsersTest.php index 30493b7023..d22898ab67 100644 --- a/tests/Feature/Api/UsersTest.php +++ b/tests/Feature/Api/UsersTest.php @@ -160,7 +160,7 @@ public function testDefaultValuesOfUser() 'lastname' => $faker->lastName(), 'email' => $faker->email(), 'status' => $faker->randomElement(['ACTIVE', 'INACTIVE']), - 'password' => $faker->password(8) . 'A' . '1', + 'password' => $faker->password(8) . 'A' . '1.', ]); // Validate that the created user has the correct default values.