Make `Faker` generate unique TOS effective dates (#34122)

pull/2991/head^2
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
1 changed files with 1 additions and 1 deletions

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