From 53e3ddf2f05619dcc33a294a9992621448948fcd Mon Sep 17 00:00:00 2001 From: jaymode Date: Thu, 6 Apr 2017 15:50:08 -0400 Subject: [PATCH] Test: remove test that will never run on master This test was added in #23950 for backporting and review, but it is always skipped on master so this commit deletes it. --- .../test/indices.create/20_warnings.yaml | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 rest-api-spec/src/main/resources/rest-api-spec/test/indices.create/20_warnings.yaml diff --git a/rest-api-spec/src/main/resources/rest-api-spec/test/indices.create/20_warnings.yaml b/rest-api-spec/src/main/resources/rest-api-spec/test/indices.create/20_warnings.yaml deleted file mode 100644 index 2d1da3acad5..00000000000 --- a/rest-api-spec/src/main/resources/rest-api-spec/test/indices.create/20_warnings.yaml +++ /dev/null @@ -1,28 +0,0 @@ ---- -"Create index with deprecated settings": - - - skip: - version: "all" - reason: removed in 6.0 - features: "warnings" - - do: - indices.create: - index: test_index - body: - settings: - number_of_shards: 1 - shadow_replicas: true - shared_filesystem: false - mappings: - type: - properties: - field: - type: "string" - field2: - type: "long" - store : "no" - warnings: - - "[index.shadow_replicas] setting was deprecated in Elasticsearch and will be removed in a future release! See the breaking changes documentation for the next major version." - - "[index.shared_filesystem] setting was deprecated in Elasticsearch and will be removed in a future release! See the breaking changes documentation for the next major version." - - "The [string] field is deprecated, please use [text] or [keyword] instead on [field]" - - "Expected a boolean [true/false] for property [field2.store] but got [no]"