Make Faker generate unique TOS effective dates (#34122)

This commit is contained in:
David Roetzel 2025-03-10 10:33:37 +01:00 committed by GitHub
parent 5c0e525e80
commit 26b5f45564
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,5 +5,5 @@ Fabricator(:terms_of_service) do
changelog { Faker::Lorem.paragraph }
published_at { Time.zone.now }
notification_sent_at { Time.zone.now }
effective_date { Faker::Date.forward }
effective_date { Faker::Date.unique.forward }
end