X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..90f1c492271ba8a777988a4b41a53c095af9ae99:/test/factories/relation.rb diff --git a/test/factories/relation.rb b/test/factories/relation.rb index c4c947a4f..6d43df0a3 100644 --- a/test/factories/relation.rb +++ b/test/factories/relation.rb @@ -1,13 +1,13 @@ FactoryBot.define do factory :relation do - timestamp Time.now - visible true - version 1 + timestamp { Time.now.utc } + visible { true } + version { 1 } changeset trait :deleted do - visible false + visible { false } end trait :with_history do