Skip to content

Commit

Permalink
[#293] fix TokenAuthFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
SonnyBA committed Nov 29, 2024
1 parent d9d1007 commit 79f0be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openklant/components/token/tests/factories/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class TokenAuthFactory(DjangoModelFactory):
identifier = factory.LazyAttribute(lambda: f"token-{random_hex()}")
identifier = factory.LazyAttribute(lambda _: f"token-{random_hex()}")
contact_person = factory.Faker("name")
email = factory.Faker("email")

Expand Down

0 comments on commit 79f0be0

Please sign in to comment.