X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/be40536440b8677323bcf30bc2b869e36f907dd9..2fb4497c6c07514644c78f61a611fd6275bf1051:/test/factories/note_comments.rb diff --git a/test/factories/note_comments.rb b/test/factories/note_comments.rb index b06dc378a..da51c0228 100644 --- a/test/factories/note_comments.rb +++ b/test/factories/note_comments.rb @@ -1,8 +1,8 @@ -FactoryGirl.define do +FactoryBot.define do factory :note_comment do sequence(:body) { |n| "This is note comment #{n}" } - visible true - event "opened" + visible { true } + event { "opened" } note end end