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 'app/graphql/types/ci/recent_failures_type.rb')
-rw-r--r--app/graphql/types/ci/recent_failures_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/ci/recent_failures_type.rb b/app/graphql/types/ci/recent_failures_type.rb
index eeff7222762..f56b0939086 100644
--- a/app/graphql/types/ci/recent_failures_type.rb
+++ b/app/graphql/types/ci/recent_failures_type.rb
@@ -9,10 +9,10 @@ module Types
connection_type_class(Types::CountableConnectionType)
- field :count, GraphQL::INT_TYPE, null: true,
+ field :count, GraphQL::Types::Int, null: true,
description: 'Number of times the test case has failed in the past 14 days.'
- field :base_branch, GraphQL::STRING_TYPE, null: true,
+ field :base_branch, GraphQL::Types::String, null: true,
description: 'Name of the base branch of the project.'
end
# rubocop: enable Graphql/AuthorizeTypes