Fix send_file_upload_spec.rb with right MIME type

This fixes a regression in mime-types-data:
https://github.com/mime-types/mime-types-data/pull/20
This commit is contained in:
Stan Hu 2019-06-16 16:40:22 -07:00
parent c5d2784e5e
commit 47d3610d0d
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ describe SendFileUpload do
it 'sends a file with a custom type' do
headers = double
expected_headers = /response-content-disposition=attachment%3B%20filename%3D%22test.js%22%3B%20filename%2A%3DUTF-8%27%27test.js&response-content-type=application%2Fecmascript/
expected_headers = /response-content-disposition=attachment%3B%20filename%3D%22test.js%22%3B%20filename%2A%3DUTF-8%27%27test.js&response-content-type=application%2Fjavascript/
expect(Gitlab::Workhorse).to receive(:send_url).with(expected_headers).and_call_original
expect(headers).to receive(:store).with(Gitlab::Workhorse::SEND_DATA_HEADER, /^send-url:/)