Fix spec failures

This commit is contained in:
Kamil Trzciński 2018-08-01 14:03:12 +02:00
parent 6893a3a4c9
commit 2d0cd52620
1 changed files with 2 additions and 2 deletions

View File

@ -352,7 +352,7 @@ module Ci
end
context 'runner feature set is verified' do
set(:pending_job) { create(:ci_build, :pending, pipeline: pipeline) }
let!(:pending_job) { create(:ci_build, :pending, pipeline: pipeline) }
before do
expect_any_instance_of(Ci::Build).to receive(:runner_required_feature_names) do
@ -364,7 +364,7 @@ module Ci
context 'when feature is missing by runner' do
let(:params) { {} }
it 'does not pick the build and drops the build' do
expect(subject).to be_nil
expect(pending_job.reload).to be_failed