X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6c597f614bc1ef3e081180a4ddcd849d7cfee5b1..06915a77b5af2ab0354e895c3c1ceb0e028f37fb:/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