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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-04-10 03:09:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-10 03:09:11 +0300
commit89cb3fa7748cad1d71417bcd5b69bf30b94c25b5 (patch)
treed1109effbce81cadbb3009b937f629be94113795 /spec/serializers
parent017841e3c03105efd0b94e730652c5774f2c136f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/ci/group_variable_entity_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/serializers/ci/group_variable_entity_spec.rb b/spec/serializers/ci/group_variable_entity_spec.rb
index a7e12905924..9b64e263992 100644
--- a/spec/serializers/ci/group_variable_entity_spec.rb
+++ b/spec/serializers/ci/group_variable_entity_spec.rb
@@ -10,7 +10,7 @@ RSpec.describe Ci::GroupVariableEntity do
subject { entity.as_json }
it 'contains required fields' do
- expect(subject).to include(:id, :key, :value, :protected, :variable_type)
+ expect(subject).to include(:id, :key, :value, :protected, :variable_type, :environment_scope)
end
end
end