Use a role name faker with higher entropy

- The "job" faker kept generating duplicates.
This commit is contained in:
richard-dds 2018-09-24 10:31:01 -04:00
parent 9c024be92d
commit 99858fe98e

View File

@ -27,7 +27,7 @@ class RoleFactory(Base):
class Meta:
model = Role
name = factory.Faker("job")
name = factory.Faker("name")
description = "This is a test role."
permissions = []