Browse Source

Fix create_list

pull/2813/head
Rachael Booth 6 months ago
parent
commit
85120e6f10
  1. 2
      db/seeds.rb

2
db/seeds.rb

@ -107,7 +107,7 @@ unless Rails.env.test?
FactoryBot.create(:location, scheme:) FactoryBot.create(:location, scheme:)
end end
[scheme2, scheme3].each do |scheme| [scheme2, scheme3].each do |scheme|
FactoryBot.create_list(3, :location, scheme:) FactoryBot.create_list(:location, 3, scheme:)
end end
end end

Loading…
Cancel
Save