From 0d8b695569010ef958176c8ebf635e56d27d5d41 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Mon, 6 Nov 2017 22:35:46 +0100 Subject: [PATCH] Fix pipeline entity test related to stages --- spec/serializers/pipeline_details_entity_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/serializers/pipeline_details_entity_spec.rb b/spec/serializers/pipeline_details_entity_spec.rb index f60d1843581..45e18086894 100644 --- a/spec/serializers/pipeline_details_entity_spec.rb +++ b/spec/serializers/pipeline_details_entity_spec.rb @@ -107,7 +107,7 @@ describe PipelineDetailsEntity do it 'contains stages' do expect(subject).to include(:details) expect(subject[:details]).to include(:stages) - expect(subject[:details][:stages].first).to include(name: 'external') + expect(subject[:details][:stages].first).to include(name: 'test') end end