X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6c597f614bc1ef3e081180a4ddcd849d7cfee5b1..06915a77b5af2ab0354e895c3c1ceb0e028f37fb:/test/factories/way.rb diff --git a/test/factories/way.rb b/test/factories/way.rb index 68826e919..1b6b18dc9 100644 --- a/test/factories/way.rb +++ b/test/factories/way.rb @@ -1,13 +1,13 @@ FactoryBot.define do factory :way do - timestamp Time.now - visible true - version 1 + timestamp { Time.now } + visible { true } + version { 1 } changeset trait :deleted do - visible false + visible { false } end trait :with_history do @@ -27,7 +27,7 @@ FactoryBot.define do factory :way_with_nodes do transient do - nodes_count 1 + nodes_count { 1 } end after(:create) do |way, evaluator|