X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/15b104f4ff4614aa78c01180b6a9b89dd5a1400f..97b9366f336daf7458fe34352e931099a4a43bd3:/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