Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKamil TrzciƄski <ayufan@ayufan.eu>2017-06-13 16:13:30 +0300
committerClement Ho <ClemMakesApps@gmail.com>2017-06-15 19:00:43 +0300
commit279f4a1c5ce86efc1bcba3f5085d4ca0a9067228 (patch)
tree6d01bc80f5b2777a28712da933ce87b45fe89057 /spec
parent220ef24fa716a36858a798e5f706cc9c1a3d9751 (diff)
Merge branch 'fix/gb/remove-invalid-build-details-exposure' into 'master'
Do not expose internal artifacts hash in build entity Closes #33605 See merge request !12124
Diffstat (limited to 'spec')
-rw-r--r--spec/serializers/build_details_entity_spec.rb2
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