From 85120e6f10cc54045a30c4cad178858d5e6ac340 Mon Sep 17 00:00:00 2001 From: Rachael Booth Date: Mon, 25 Nov 2024 13:34:43 +0000 Subject: [PATCH] Fix create_list --- db/seeds.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/seeds.rb b/db/seeds.rb index 585266735..8c7cf89d7 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -107,7 +107,7 @@ unless Rails.env.test? FactoryBot.create(:location, scheme:) end [scheme2, scheme3].each do |scheme| - FactoryBot.create_list(3, :location, scheme:) + FactoryBot.create_list(:location, 3, scheme:) end end