diff --git a/db/dev_seeds.rb b/db/dev_seeds.rb index d9b09f70a..09278aa56 100644 --- a/db/dev_seeds.rb +++ b/db/dev_seeds.rb @@ -521,7 +521,7 @@ print "Creating Poll Questions" question = Poll::Question.create!(author: author, title: Faker::Lorem.sentence(3).truncate(60), description: description, - valid_answers: Faker::Lorem.words(3).join(', '), + valid_answers: Faker::Lorem.words((2..7).to_a.sample).join(', '), poll: poll) end