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