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_case_type.rb')
-rw-r--r--app/graphql/types/ci/test_case_type.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/types/ci/test_case_type.rb b/app/graphql/types/ci/test_case_type.rb
index 9cc3f918125..9ec5daa44ea 100644
--- a/app/graphql/types/ci/test_case_type.rb
+++ b/app/graphql/types/ci/test_case_type.rb
@@ -12,25 +12,25 @@ module Types
field :status, Types::Ci::TestCaseStatusEnum, null: true,
description: "Status of the test case (#{::Gitlab::Ci::Reports::TestCase::STATUS_TYPES.join(', ')})."
- field :name, GraphQL::STRING_TYPE, null: true,
+ field :name, GraphQL::Types::String, null: true,
description: 'Name of the test case.'
- field :classname, GraphQL::STRING_TYPE, null: true,
+ field :classname, GraphQL::Types::String, null: true,
description: 'Classname of the test case.'
field :execution_time, GraphQL::FLOAT_TYPE, null: true,
description: 'Test case execution time in seconds.'
- field :file, GraphQL::STRING_TYPE, null: true,
+ field :file, GraphQL::Types::String, null: true,
description: 'Path to the file of the test case.'
- field :attachment_url, GraphQL::STRING_TYPE, null: true,
+ field :attachment_url, GraphQL::Types::String, null: true,
description: 'URL of the test case attachment file.'
- field :system_output, GraphQL::STRING_TYPE, null: true,
+ field :system_output, GraphQL::Types::String, null: true,
description: 'System output of the test case.'
- field :stack_trace, GraphQL::STRING_TYPE, null: true,
+ field :stack_trace, GraphQL::Types::String, null: true,
description: 'Stack trace of the test case.'
field :recent_failures, Types::Ci::RecentFailuresType, null: true,