X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..007da72bdda2d7a4470996ea1653be84f031945a:/test/factories/traces.rb?ds=inline 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|