X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa1fb6dbb8c2e71b8ce8c231ae1272a2dfebd75a..9da461cc2e9008e5a5dc861bfda0b00ce073f835:/test/factories/note_comments.rb diff --git a/test/factories/note_comments.rb b/test/factories/note_comments.rb index d3fb3ce96..da51c0228 100644 --- a/test/factories/note_comments.rb +++ b/test/factories/note_comments.rb @@ -1,8 +1,8 @@ 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