diff --git a/db/dev_seeds.rb b/db/dev_seeds.rb index 61b5f5060..d9d6d2483 100644 --- a/db/dev_seeds.rb +++ b/db/dev_seeds.rb @@ -149,7 +149,7 @@ tags = Faker::Lorem.words(25) description = "

#{Faker::Lorem.paragraphs.join('

')}

" proposal = Proposal.create!(author: author, title: Faker::Lorem.sentence(3).truncate(60), - question: Faker::Lorem.sentence(3), + question: Faker::Lorem.sentence(3) + "?", summary: Faker::Lorem.sentence(3), responsible_name: Faker::Name.name, external_url: Faker::Internet.url, @@ -168,7 +168,7 @@ tags = ActsAsTaggableOn::Tag.where(kind: 'category') description = "

#{Faker::Lorem.paragraphs.join('

')}

" proposal = Proposal.create!(author: author, title: Faker::Lorem.sentence(3).truncate(60), - question: Faker::Lorem.sentence(3), + question: Faker::Lorem.sentence(3) + "?", summary: Faker::Lorem.sentence(3), responsible_name: Faker::Name.name, external_url: Faker::Internet.url,