From d61b3b2b639b4c1592f96905a06d8c1da15384d3 Mon Sep 17 00:00:00 2001 From: Malaber <32635600+Malaber@users.noreply.github.com> Date: Thu, 23 May 2019 12:01:34 +0200 Subject: [PATCH] Fix factory name for stageless tournament --- .../add_group_stage_to_tournament_interactor_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/interactors/add_group_stage_to_tournament_interactor_spec.rb b/spec/interactors/add_group_stage_to_tournament_interactor_spec.rb index 0170d33..d7a3208 100644 --- a/spec/interactors/add_group_stage_to_tournament_interactor_spec.rb +++ b/spec/interactors/add_group_stage_to_tournament_interactor_spec.rb @@ -10,7 +10,7 @@ RSpec.describe AddGroupStageToTournament do end before do - @empty_tournament = create(:stage_less_tournament) + @empty_tournament = create(:stageless_tournament) @group_stage_tournament = create(:group_stage_only_tournament, group_count: 0) @group_stage = create(:group_stage) @groups = Hash[1 => create_list(:team, 4), 2 => create_list(:team, 4)].values