X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/15b104f4ff4614aa78c01180b6a9b89dd5a1400f..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|