diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-13 11:05:48 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-13 11:05:48 +0200 |
commit | b3a1961a43de0f033bb33a8fbcb96c07b3dd598d (patch) | |
tree | 7de923350fc773c35f0659e75fa2ad32bc80addb /spec/serializers | |
parent | 6f5a68f528d6c11f3bfd013e30cc71845abe6ef8 (diff) | |
download | gitlab-ce-b3a1961a43de0f033bb33a8fbcb96c07b3dd598d.tar.gz |
Do not expose internal artifacts hash in build entityfix/gb/remove-invalid-build-details-exposure
Diffstat (limited to 'spec/serializers')
-rw-r--r-- | spec/serializers/build_details_entity_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/serializers/build_details_entity_spec.rb b/spec/serializers/build_details_entity_spec.rb index e2511e8968c..396ba96e9b3 100644 --- a/spec/serializers/build_details_entity_spec.rb +++ b/spec/serializers/build_details_entity_spec.rb @@ -29,7 +29,7 @@ describe BuildDetailsEntity do it 'contains the needed key value pairs' do expect(subject).to include(:coverage, :erased_at, :duration) - expect(subject).to include(:artifacts, :runner, :pipeline) + expect(subject).to include(:runner, :pipeline) expect(subject).to include(:raw_path, :merge_request) expect(subject).to include(:new_issue_path) end |