diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-18 12:09:15 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-18 12:09:15 +0000 |
commit | 0637ba1e6e9024f35b2cbf561d9002ec17350bb3 (patch) | |
tree | 960cebf0e892710c1b40f25e249d04aaf8f9b868 /spec/factories | |
parent | 4720b569f0fcbb47e9f1a60e95172ae63b6f065a (diff) | |
download | gitlab-ce-0637ba1e6e9024f35b2cbf561d9002ec17350bb3.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r-- | spec/factories/ci/job_artifacts.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/ci/job_artifacts.rb b/spec/factories/ci/job_artifacts.rb index 590578aec9a..296215abfa0 100644 --- a/spec/factories/ci/job_artifacts.rb +++ b/spec/factories/ci/job_artifacts.rb @@ -141,11 +141,11 @@ FactoryBot.define do trait :lsif do file_type { :lsif } - file_format { :raw } + file_format { :gzip } after(:build) do |artifact, evaluator| artifact.file = fixture_file_upload( - Rails.root.join('spec/fixtures/lsif.json.gz'), 'application/octet-stream') + Rails.root.join('spec/fixtures/lsif.json.gz'), 'application/x-gzip') end end |