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>2020-06-03 00:08:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-03 00:08:00 +0300
commit2164573e4531de7949b0ad9fe1d55bfb9c42765d (patch)
tree10cf954a1225eb3162009f5c2457bacdc388aa63 /app/validators/json_schemas
parentf3e7bc80608c100227030030a6a601897f8e4ff9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/validators/json_schemas')
-rw-r--r--app/validators/json_schemas/build_report_result_data.json4
-rw-r--r--app/validators/json_schemas/build_report_result_data_tests.json (renamed from app/validators/json_schemas/build_report_result_data_junit.json)2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/validators/json_schemas/build_report_result_data.json b/app/validators/json_schemas/build_report_result_data.json
index b364266b9d6..0fb4fd6d0b7 100644
--- a/app/validators/json_schemas/build_report_result_data.json
+++ b/app/validators/json_schemas/build_report_result_data.json
@@ -3,9 +3,9 @@
"type": "object",
"properties": {
"coverage": { "type": "float" },
- "junit": {
+ "tests": {
"type": "object",
- "items": { "$ref": "./build_report_result_data_junit.json" }
+ "items": { "$ref": "./build_report_result_data_tests.json" }
}
},
"additionalProperties": false
diff --git a/app/validators/json_schemas/build_report_result_data_junit.json b/app/validators/json_schemas/build_report_result_data_tests.json
index f69cbd4f16d..b38559e727f 100644
--- a/app/validators/json_schemas/build_report_result_data_junit.json
+++ b/app/validators/json_schemas/build_report_result_data_tests.json
@@ -1,5 +1,5 @@
{
- "description": "Build report result data junit",
+ "description": "Build report result data tests",
"type": "object",
"properties": {
"name": { "type": "string" },