X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/effb1b7f4170bb7244c4dfffcbe6134fe00e2bc4..61a0df75a7c6636f691cd436f3474b7fad587e88:/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