浏览代码

Remove obsolete YAML test cases (#108357)

Moritz Mack 1 年之前
父节点
当前提交
c0d419d335

+ 0 - 18
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/indices.put_settings/all_path_options.yml

@@ -78,24 +78,6 @@ setup:
   - match: {test_index2.settings.index.refresh_interval:     10s}
   - is_false: foo.settings.index.refresh_interval
 
----
-"put settings in list of indices":
-  - skip:
-      awaits_fix: list of indices not implemented yet
-  - do:
-      indices.put_settings:
-        index: test_index1, test_index2
-        body:
-          refresh_interval: 10s
-
-  - do:
-      indices.get_settings: {}
-
-  - match: {test_index1.settings.index.refresh_interval:     10s}
-  - match: {test_index2.settings.index.refresh_interval:     10s}
-  - is_false: foo.settings.index.refresh_interval
-
-
 ---
 "put settings in blank index":
   - do:

+ 0 - 30
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/update/85_fields_meta.yml

@@ -1,30 +0,0 @@
----
-"Metadata Fields":
-
-  - skip:
-      awaits_fix: "Update doesn't return metadata fields, waiting for #3259"
-
-  - do:
-      indices.create:
-          index: test_1
-
-  - do:
-      update:
-          index:  test_1
-          id:     "1"
-          parent: 5
-          fields: [ _routing ]
-          body:
-            doc:    { foo: baz }
-            upsert: { foo: bar }
-
-  - match:   { get._routing: "5" }
-
-  - do:
-      get:
-          index:  test_1
-          id:     "1"
-          parent: 5
-          stored_fields: [ _routing ]
-
-