Merge pull request #1567 from bertocq/fix/officing_recount_spec_flaky_test

Use a random word on the Poll factory name attribute
This commit is contained in:
Juanjo Bazán
2017-05-26 17:46:19 +02:00
committed by GitHub

View File

@@ -388,7 +388,7 @@ FactoryGirl.define do
end
factory :poll do
sequence(:name) { |n| "Poll #{n}" }
sequence(:name) { |n| "Poll #{Faker::StarWars.character}" }
starts_at { 1.month.ago }
ends_at { 1.month.from_now }