X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b2fa94750221ec316eb6c5244ca66543f321538c..550fa0c8e46c9d4e09e30f7940bcb63f84f0ac41:/test/factories/traces.rb diff --git a/test/factories/traces.rb b/test/factories/traces.rb index efc1180cd..8663ccf27 100644 --- a/test/factories/traces.rb +++ b/test/factories/traces.rb @@ -5,15 +5,15 @@ FactoryBot.define do user - timestamp Time.now - inserted true + timestamp { Time.now } + inserted { true } trait :deleted do - visible false + visible { false } end transient do - fixture nil + fixture { nil } end after(:create) do |trace, evaluator|