diff --git a/spec/dot_gitlab_ci/ci_configuration_validation/shared_context_and_examples.rb b/spec/dot_gitlab_ci/ci_configuration_validation/shared_context_and_examples.rb index a3c6e84ddca4e3a86bc1ec4c12e9969f0b0cb08e..b9477e68c0d274c539bafb8457ee80c942854c7d 100644 --- a/spec/dot_gitlab_ci/ci_configuration_validation/shared_context_and_examples.rb +++ b/spec/dot_gitlab_ci/ci_configuration_validation/shared_context_and_examples.rb @@ -122,13 +122,18 @@ RSpec.shared_examples 'merge train pipeline' do let(:ci_merge_request_event_type) { 'merge_train' } + let(:expected_job_names) do + %w[ + dont-interrupt-me + pre-merge-checks + ] + end it "succeeds with expected job" do expect(pipeline.yaml_errors).to be_nil expect(pipeline.errors).to be_empty expect(pipeline.status).to eq('created') - expect(jobs).to include('pre-merge-checks') - expect(jobs).not_to include('upload-frontend-fixtures') + expect(jobs).to eq(expected_job_names) end end