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/test_report_summary_type.rb')
-rw-r--r--app/graphql/types/ci/test_report_summary_type.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/graphql/types/ci/test_report_summary_type.rb b/app/graphql/types/ci/test_report_summary_type.rb
index 87207c8a765..e3577f4fa8f 100644
--- a/app/graphql/types/ci/test_report_summary_type.rb
+++ b/app/graphql/types/ci/test_report_summary_type.rb
@@ -9,10 +9,12 @@ module Types
description 'Test report for a pipeline'
field :total, Types::Ci::TestReportTotalType, null: false,
- description: 'Total report statistics for a pipeline test report.'
+ description: 'Total report statistics for a pipeline test report.'
- field :test_suites, Types::Ci::TestSuiteSummaryType.connection_type, null: false,
- description: 'Test suites belonging to a pipeline test report.'
+ field :test_suites,
+ Types::Ci::TestSuiteSummaryType.connection_type,
+ null: false,
+ description: 'Test suites belonging to a pipeline test report.'
end
# rubocop: enable Graphql/AuthorizeTypes
end