]> git.openstreetmap.org Git - rails.git/blobdiff - test/factories/node.rb
Fix rubocop Rails/TimeZone warnings
[rails.git] / test / factories / node.rb
index bcc1fdbe810d00d3910408854d4dd72fb8c6c392..392d67a846d0401f6243681cf451294add3859c7 100644 (file)
@@ -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