X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/15b104f4ff4614aa78c01180b6a9b89dd5a1400f..b7e871cb466d317f39c45329564d49ad8402c6e4:/test/factories/notes.rb diff --git a/test/factories/notes.rb b/test/factories/notes.rb index 56a9541dc..77b4245aa 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -1,12 +1,12 @@ FactoryBot.define do factory :note do - latitude 1 * GeoRecord::SCALE - longitude 1 * GeoRecord::SCALE - # tile QuadTile.tile_for_point(1,1) + latitude { 1 * GeoRecord::SCALE } + longitude { 1 * GeoRecord::SCALE } + # tile { QuadTile.tile_for_point(1,1) } factory :note_with_comments do transient do - comments_count 1 + comments_count { 1 } end after(:create) do |note, evaluator|