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:
Diffstat (limited to 'spec/graphql/types/ci/inherited_ci_variable_type_spec.rb')
-rw-r--r--spec/graphql/types/ci/inherited_ci_variable_type_spec.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/graphql/types/ci/inherited_ci_variable_type_spec.rb b/spec/graphql/types/ci/inherited_ci_variable_type_spec.rb
index daf80ff9978..973d6d602c9 100644
--- a/spec/graphql/types/ci/inherited_ci_variable_type_spec.rb
+++ b/spec/graphql/types/ci/inherited_ci_variable_type_spec.rb
@@ -7,13 +7,14 @@ RSpec.describe GitlabSchema.types['InheritedCiVariable'], feature_category: :sec
expect(described_class).to have_graphql_fields(
:id,
:key,
- :raw,
- :variable_type,
+ :description,
:environment_scope,
+ :group_name,
+ :group_ci_cd_settings_path,
:masked,
:protected,
- :group_name,
- :group_ci_cd_settings_path
+ :raw,
+ :variable_type
).at_least
end
end