X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/be40536440b8677323bcf30bc2b869e36f907dd9..10d65cc8571d38bb6af6d9022edb98a294ad2f2d:/test/factories/notes.rb?ds=inline diff --git a/test/factories/notes.rb b/test/factories/notes.rb index 9dbcdf58c..77b4245aa 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -1,12 +1,12 @@ -FactoryGirl.define do +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|