Skip to content

Commit 731025e

Browse files
committed
Fix the test case failure
1 parent be127e6 commit 731025e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

qa/integration/specs/multiple_pipeline_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
expect(IO.readlines(temporary_out_file_1).size).to eq(1)
8383
expect(File.exist?(temporary_out_file_2)).to be(true)
8484
expect(IO.readlines(temporary_out_file_2).size).to eq(1)
85-
expect(File.exist?(ENV['TEMP_FILE_PATH'])).to be(true)
86-
expect(IO.readlines(ENV['TEMP_FILE_PATH']).size).to eq(1)
85+
expect(File.exist?(temporary_out_file_3)).to be(true)
86+
expect(IO.readlines(temporary_out_file_3).size).to eq(1)
8787
end
8888

8989
context 'effectively-empty pipelines.yml file' do

0 commit comments

Comments
 (0)