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