diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-05-04 12:12:22 +0200 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-05-04 12:13:27 +0200 |
commit | 24e3b33461207266eb569659d4fa0dc3fae6758d (patch) | |
tree | 91cdec33ad1cf23afa88654741c5494f59d927d5 /spec/fixtures | |
parent | a72f4ecbb93857c9c45d84f6c2d70f9cce3b852d (diff) | |
download | gitlab-ce-24e3b33461207266eb569659d4fa0dc3fae6758d.tar.gz |
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.json | 2 | ||||
-rw-r--r-- | spec/fixtures/api/schemas/pipeline_stage.json | 2 |
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" } }, |