X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/aa1fb6dbb8c2e71b8ce8c231ae1272a2dfebd75a..6d7d581de1a271b69620aad76964efd42f173451:/test/factories/way.rb diff --git a/test/factories/way.rb b/test/factories/way.rb index 68826e919..f2093e305 100644 --- a/test/factories/way.rb +++ b/test/factories/way.rb @@ -1,13 +1,13 @@ FactoryBot.define do factory :way 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 @@ -27,7 +27,7 @@ FactoryBot.define do factory :way_with_nodes do transient do - nodes_count 1 + nodes_count { 1 } end after(:create) do |way, evaluator|