From 9ec867c07ef4567dafab596ecb5c1dd216cadf1f Mon Sep 17 00:00:00 2001 From: Malaber <32635600+Malaber@users.noreply.github.com> Date: Fri, 10 May 2019 18:49:39 +0200 Subject: [PATCH] Reduce standart amount of teams within a tournament to 8 --- spec/factories/tournaments.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/factories/tournaments.rb b/spec/factories/tournaments.rb index 75304a6..ce7ad76 100644 --- a/spec/factories/tournaments.rb +++ b/spec/factories/tournaments.rb @@ -6,7 +6,7 @@ FactoryBot.define do description { Faker::Lorem.sentence } user transient do - teams_count { 16 } + teams_count { 8 } end after(:create) do |tournament, evaluator| tournament.teams = create_list(:team, evaluator.teams_count, tournament: tournament)