From c7a7ef044cf79dcd5ffd25b9fb325cd0abd612b2 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Thu, 20 Jul 2017 12:56:27 +0200 Subject: Use a new stage_id reference to a persisted stage --- spec/models/commit_status_spec.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'spec/models/commit_status_spec.rb') diff --git a/spec/models/commit_status_spec.rb b/spec/models/commit_status_spec.rb index c7651ce9b46..f54e1131813 100644 --- a/spec/models/commit_status_spec.rb +++ b/spec/models/commit_status_spec.rb @@ -409,9 +409,10 @@ describe CommitStatus, :models do end describe '#stage_entity' do - let!(:stage) do - create(:ci_stage_entity, pipeline: commit_status.pipeline, - name: commit_status.stage) + let(:stage) { create(:ci_stage_entity) } + + let(:commit_status) do + create(:commit_status, stage_id: stage.id) end it 'has a correct association with persisted stage' do -- cgit v1.2.1