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:
authorMatija Čupić <matteeyah@gmail.com>2018-05-04 13:12:22 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-05-04 13:13:27 +0300
commit24e3b33461207266eb569659d4fa0dc3fae6758d (patch)
tree91cdec33ad1cf23afa88654741c5494f59d927d5 /spec/fixtures
parenta72f4ecbb93857c9c45d84f6c2d70f9cce3b852d (diff)
Rename status JSON schema to ci_detailed_status
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/ci_detailed_status.json (renamed from spec/fixtures/api/schemas/status.json)0
-rw-r--r--spec/fixtures/api/schemas/job.json2
-rw-r--r--spec/fixtures/api/schemas/pipeline_stage.json2
3 files changed, 2 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/status.json b/spec/fixtures/api/schemas/ci_detailed_status.json
index 01e34249bf1..01e34249bf1 100644
--- a/spec/fixtures/api/schemas/status.json
+++ b/spec/fixtures/api/schemas/ci_detailed_status.json
diff --git a/spec/fixtures/api/schemas/job.json b/spec/fixtures/api/schemas/job.json
index 0abee1945cc..7b92ab25bc1 100644
--- a/spec/fixtures/api/schemas/job.json
+++ b/spec/fixtures/api/schemas/job.json
@@ -18,7 +18,7 @@
"playable": { "type": "boolean" },
"created_at": { "type": "string" },
"updated_at": { "type": "string" },
- "status": { "$ref": "status.json" }
+ "status": { "$ref": "ci_detailed_status.json" }
},
"additionalProperties": false
}
diff --git a/spec/fixtures/api/schemas/pipeline_stage.json b/spec/fixtures/api/schemas/pipeline_stage.json
index d11c92810dc..55454200bb3 100644
--- a/spec/fixtures/api/schemas/pipeline_stage.json
+++ b/spec/fixtures/api/schemas/pipeline_stage.json
@@ -16,7 +16,7 @@
"items": { "$ref": "job.json" },
"optional": true
},
- "status": { "$ref": "status.json" },
+ "status": { "$ref": "ci_detailed_status.json" },
"path": { "type": "string" },
"dropdown_path": { "type": "string" }
},