match seed data to cypress test data

This commit is contained in:
Yisroel Baum 2026-05-24 20:07:12 +03:00
parent eff7c5c281
commit 93a8533d76
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ class UserSeeder extends Seeder
$userRepository = app(UserRepository::class);
$passwordHasher = app(PasswordHasher::class);
$userRepository->create(new CreateUserDto(
email: new EmailAddress('test@example.com'),
email: new EmailAddress('admin@rabbigerzi.test'),
passwordHash: $passwordHasher->hash('password123!@#'),
));
}