X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7d95a576cd28c51ea60ec498713838adda7be06c..75bde83a138226179059551e386561640adc285d:/test/factories/node.rb?ds=sidebyside diff --git a/test/factories/node.rb b/test/factories/node.rb index bcc1fdbe8..392d67a84 100644 --- a/test/factories/node.rb +++ b/test/factories/node.rb @@ -1,16 +1,16 @@ -FactoryGirl.define do +FactoryBot.define do factory :node do - latitude 1 * GeoRecord::SCALE - longitude 1 * GeoRecord::SCALE + latitude { 1 * GeoRecord::SCALE } + longitude { 1 * GeoRecord::SCALE } changeset - visible true - timestamp Time.now - version 1 + visible { true } + timestamp { Time.now.utc } + version { 1 } trait :deleted do - visible false + visible { false } end trait :with_history do