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
committerKamil Trzciński <ayufan@ayufan.eu>2017-06-13 16:13:30 +0300
commit9cc126ea3fef95c71f1de98848b757aeae337193 (patch)
treef9341dc0db61d4ed32c123d301823f9313d468ff /spec
parent0d499ce215b8ce4623349c4b00311c810f83c77c (diff)
parentb3a1961a43de0f033bb33a8fbcb96c07b3dd598d (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