[TEST] remove feature yaml from REST tests

The only runner that supported it was the java runner, we can use json format instead given that the default one with cat apis is text
This commit is contained in:
javanna 2016-06-27 11:12:09 +02:00 committed by Luca Cavanna
parent 60bafa5d78
commit 43b82ce244
2 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,5 @@
---
"Simple alias with yaml body through format argument":
- skip:
features: yaml
"Simple alias with json body through format argument":
- do:
indices.create:
@ -15,7 +12,7 @@
- do:
cat.aliases:
format: yaml
format: json
- match: {0.alias: test_alias}
- match: {0.index: test}

View File

@ -34,7 +34,7 @@ import java.util.List;
*/
public final class Features {
private static final List<String> SUPPORTED = Arrays.asList("stash_in_path", "groovy_scripting", "headers", "yaml");
private static final List<String> SUPPORTED = Arrays.asList("stash_in_path", "groovy_scripting", "headers");
private Features() {