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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-06-13 12:05:48 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-06-13 12:05:48 +0300
commitb3a1961a43de0f033bb33a8fbcb96c07b3dd598d (patch)
tree7de923350fc773c35f0659e75fa2ad32bc80addb /spec
parent6f5a68f528d6c11f3bfd013e30cc71845abe6ef8 (diff)
Do not expose internal artifacts hash in build entity
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