X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7406ae5dcc9cbb177a8ea33085af9caf6e3ebb1b..335c09cd338091037f7b047f2b488b66ea5a1b88:/test/factories/notes.rb diff --git a/test/factories/notes.rb b/test/factories/notes.rb index ab7d5df56..268a2bfb7 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -2,7 +2,7 @@ FactoryBot.define do factory :note do latitude { 1 * GeoRecord::SCALE } longitude { 1 * GeoRecord::SCALE } - # tile { QuadTile.tile_for_point(1,1) } + description { "Default note's description" } trait :closed do transient do @@ -23,7 +23,8 @@ FactoryBot.define do end after(:create) do |note, evaluator| - create_list(:note_comment, evaluator.comments_count, :note => note) + create(:note_comment, :event => "opened", :note => note) + create_list(:note_comment, evaluator.comments_count - 1, :note => note) end end end