CC Upgrade 20250617

This commit is contained in:
Alejandro Franco 2025-06-17 14:30:12 -06:00
parent ca7deb4c95
commit 1258e53822

View File

@ -14,7 +14,8 @@ class UserFactory(DjangoModelFactory[User]):
username = Faker("user_name")
{%- endif %}
email = Faker("email")
name = Faker("name")
first_name = Faker("first_name")
last_name = Faker("last_name")
@post_generation
def password(self, create: bool, extracted: Sequence[Any], **kwargs): # noqa: FBT001