Commit 04e39db4 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Use #headers= instead of #header

I don't know why we need this change now?
parent 5863b5aa
...@@ -413,7 +413,7 @@ feature 'Jobs', :feature do ...@@ -413,7 +413,7 @@ feature 'Jobs', :feature do
context 'access source' do context 'access source' do
context 'job from project' do context 'job from project' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.headers = { 'X-Sendfile-Type' => 'X-Sendfile' }
build.run! build.run!
visit namespace_project_job_path(project.namespace, project, build) visit namespace_project_job_path(project.namespace, project, build)
page.within('.js-build-sidebar') { click_link 'Raw' } page.within('.js-build-sidebar') { click_link 'Raw' }
...@@ -428,7 +428,7 @@ feature 'Jobs', :feature do ...@@ -428,7 +428,7 @@ feature 'Jobs', :feature do
context 'job from other project' do context 'job from other project' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.headers = { 'X-Sendfile-Type' => 'X-Sendfile' }
build2.run! build2.run!
visit raw_namespace_project_job_path(project.namespace, project, build2) visit raw_namespace_project_job_path(project.namespace, project, build2)
end end
...@@ -443,7 +443,7 @@ feature 'Jobs', :feature do ...@@ -443,7 +443,7 @@ feature 'Jobs', :feature do
let(:existing_file) { Tempfile.new('existing-trace-file').path } let(:existing_file) { Tempfile.new('existing-trace-file').path }
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.headers = { 'X-Sendfile-Type' => 'X-Sendfile' }
build.run! build.run!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment